diff options
author | rtk0c <[email protected]> | 2022-04-17 20:08:57 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-17 20:08:57 -0700 |
commit | 5424a1d5434e3ddd911a504719918c2df027e2fd (patch) | |
tree | 6275aab13140d81dcc46c8290e73ac9a8bbb5605 /source/App.hpp | |
parent | afcac59c7d04f4337d6b04ebed8cac7e871ccc50 (diff) |
Changeset: 8 Initial work on sprites and texture system
Diffstat (limited to 'source/App.hpp')
-rw-r--r-- | source/App.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/App.hpp b/source/App.hpp index 731ab06..fbdbd43 100644 --- a/source/App.hpp +++ b/source/App.hpp @@ -28,7 +28,12 @@ public: void Init(); void Shutdown(); + // Do ImGui calls void Show(); + // Do regular calls + void Update(); + void Draw(); + void HandleMouse(int button, int action); void HandleMouseMotion(double xOff, double yOff); void HandleKey(GLFWkeyboard* keyboard, int key, int action); |