A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
SceneCreator.hh
1#pragma once
2
3namespace EGG {
4
5class Scene;
6
9public:
10 virtual Scene *create(int sceneID) const = 0;
11 virtual void destroy(int sceneID) const = 0;
12};
13
14} // namespace EGG
Interface for creating and destroying scenes.
EGG core library.
Definition Archive.cc:6
Pertains to scene handling.
Definition GameScene.cc:8