diff options
Diffstat (limited to 'main/keyboard.cpp')
-rw-r--r-- | main/keyboard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/keyboard.cpp b/main/keyboard.cpp index 14daa19c..50bc214a 100644 --- a/main/keyboard.cpp +++ b/main/keyboard.cpp @@ -1,5 +1,5 @@ #include "app.hpp" -namespace Magnum::Examples { +namespace floormat { void app::do_key(KeyEvent::Key k, KeyEvent::Modifiers m, bool pressed, bool repeated) { @@ -40,4 +40,4 @@ void app::keyReleaseEvent(Platform::Sdl2Application::KeyEvent& event) do_key(event.key(), event.modifiers(), false, false); } -} // namespace Magnum::Examples +} // namespace floormat |