diff options
author | hnOsmium0001 <[email protected]> | 2022-04-17 20:08:57 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-17 20:08:57 -0700 |
commit | d43508ba4843801cbbf1f42a27af260d4eef5701 (patch) | |
tree | 39c51368cfe8ec097c08f198877cf07e9ff835ee /source/App.hpp | |
parent | 509201784d6525fc26345e55a56ab81e4a7616b3 (diff) |
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); |