aboutsummaryrefslogtreecommitdiff
path: root/source/App.cpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-04-17 20:08:57 -0700
committerrtk0c <[email protected]>2022-04-17 20:08:57 -0700
commit5424a1d5434e3ddd911a504719918c2df027e2fd (patch)
tree6275aab13140d81dcc46c8290e73ac9a8bbb5605 /source/App.cpp
parentafcac59c7d04f4337d6b04ebed8cac7e871ccc50 (diff)
Changeset: 8 Initial work on sprites and texture system
Diffstat (limited to 'source/App.cpp')
-rw-r--r--source/App.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/App.cpp b/source/App.cpp
index ff0a5a5..ac5b319 100644
--- a/source/App.cpp
+++ b/source/App.cpp
@@ -30,13 +30,18 @@ void App::Shutdown() {
}
void App::Show() {
- mCurrentWorld->Draw();
-
if (mEditorShown) {
mEditor->Show();
}
}
+void App::Update() {
+}
+
+void App::Draw() {
+ mCurrentWorld->Draw();
+}
+
void App::HandleMouse(int button, int action) {
}