1#include "SceneCreatorDynamic.hh"
3#include <game/scene/RaceScene.hh>
4#include <game/scene/RootScene.hh>
8EGG::Scene *SceneCreatorDynamic::create(
int sceneId)
const {
9 return create(
static_cast<SceneId
>(sceneId));
12void SceneCreatorDynamic::destroy(
int sceneId)
const {
13 destroy(
static_cast<SceneId
>(sceneId));
17EGG::Scene *SceneCreatorDynamic::create(SceneId sceneId)
const {
24 PANIC(
"Unreachable scene creation!");
29void SceneCreatorDynamic::destroy(SceneId sceneId)
const {
36 PANIC(
"Unreachable scene deletion!");
Base class for all scenes.
Represents an instance of a race.
The parent scene for all other scenes.
Represents the host application.