summaryrefslogtreecommitdiff
path: root/application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'application.cpp')
-rw-r--r--application.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/application.cpp b/application.cpp
index 3bf646b..b92b9a3 100644
--- a/application.cpp
+++ b/application.cpp
@@ -61,6 +61,9 @@ void Application::event(const sf::Event& e) {
case sf::Event::KeyPressed:
event_keypress(e.Key.Code);
break;
+ case sf::Event::Resized:
+ event_reshape(e.Size.Width, e.Size.Height);
+ break;
default:
break;
}
@@ -74,9 +77,14 @@ void Application::event_keypress(sf::Key::Code key) {
case sf::Key::F:
fullscreen = !fullscreen;
create_window(1024, 768, fullscreen);
+ event_reshape(window->GetWidth(), window->GetHeight());
init();
break;
default:
break;
}
}
+
+void Application::event_reshape(int width, int height) {
+
+}