diff options
author | hnOsmium0001 <[email protected]> | 2022-04-25 20:22:07 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-25 20:22:07 -0700 |
commit | f54370de7e4214cb7813d26b1a39a8f6e42b7b56 (patch) | |
tree | 20913b4099b77af933fcd2ebb4e73f53b366ad8f /source/World.hpp | |
parent | c8ebee643f23c34ff57f69f8dfcf1903b59ea9d1 (diff) |
Initial work on rendering sprites to screen
Diffstat (limited to 'source/World.hpp')
-rw-r--r-- | source/World.hpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/source/World.hpp b/source/World.hpp index b12e5ad..288142e 100644 --- a/source/World.hpp +++ b/source/World.hpp @@ -1,16 +1,12 @@ #pragma once - class GameObject; class GameWorld { private: - class RenderData; - RenderData* mRender; - GameObject* mRoot; bool mAwakened = false; -public: +public: GameWorld(); ~GameWorld(); @@ -24,8 +20,6 @@ public: void Resleep(); void Update(); - void Draw(); - const GameObject& GetRoot() const; GameObject& GetRoot(); }; |