A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
RootScene.hh
1#pragma once
2
3#include <egg/core/ExpHeap.hh>
4#include <egg/core/Scene.hh>
5
6namespace Scene {
7
9class RootScene final : public EGG::Scene {
10public:
11 RootScene();
12 ~RootScene() override;
13
14 void enter() override;
15
16private:
17 void allocate();
18 void init();
19
20#ifdef BUILD_DEBUG
21 void checkMemory();
22#endif // BUILD_DEBUG
23
24 EGG::ExpHeap::GroupSizeRecord m_groupSizeRecord;
25};
26
27} // namespace Scene
Memory blocks have group IDs assigned to them (default 0). This class is a record of the total sum of...
Definition ExpHeap.hh:21
Base class for all scenes.
Definition Scene.hh:16
The parent scene for all other scenes.
Definition RootScene.hh:9
Pertains to scene handling.
Definition GameScene.cc:8