#pragma once #include "GameObject.hpp" class LevelWrapperObject : public GameObject { public: LevelWrapperObject(GameWorld* world); ~LevelWrapperObject() override; }; /// Represents a seralized GameObject tree. class Level { };