aboutsummaryrefslogtreecommitdiff
path: root/source/App.hpp
diff options
context:
space:
mode:
authorhnOsmium0001 <[email protected]>2022-04-17 20:08:57 -0700
committerhnOsmium0001 <[email protected]>2022-04-17 20:08:57 -0700
commitd43508ba4843801cbbf1f42a27af260d4eef5701 (patch)
tree39c51368cfe8ec097c08f198877cf07e9ff835ee /source/App.hpp
parent509201784d6525fc26345e55a56ab81e4a7616b3 (diff)
Initial work on sprites and texture system
Diffstat (limited to 'source/App.hpp')
-rw-r--r--source/App.hpp5
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);