A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
SceneCreatorDynamic.hh
1#pragma once
2
3#include "host/SceneId.hh"
4
5#include <egg/core/SceneCreator.hh>
6
7#include <Common.hh>
8
10namespace Host {
11
13public:
14 [[nodiscard]] EGG::Scene *create(int sceneId) const override;
15 void destroy(int sceneId) const override;
16
17private:
18 [[nodiscard]] EGG::Scene *create(SceneId sceneId) const;
19 void destroy(SceneId sceneId) const;
20};
21
22} // namespace Host
This header houses common data types such as our integral types and enums.
Interface for creating and destroying scenes.
Base class for all scenes.
Definition Scene.hh:16
Represents the host application.
Definition Option.cc:5