blob: 5c923333225e61df329290bf5ffeb1593ebeafa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "GameObject.hpp"
class LevelWrapperObject : public GameObject {
public:
LevelWrapperObject(GameWorld* world);
~LevelWrapperObject() override;
};
/// Represents a seralized GameObject tree.
class Level {
};
|