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.cpp | |
parent | 509201784d6525fc26345e55a56ab81e4a7616b3 (diff) |
Initial work on sprites and texture system
Diffstat (limited to 'source/App.cpp')
-rw-r--r-- | source/App.cpp | 9 |
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) { } |