diff options
Diffstat (limited to 'src/input_actions.hpp')
-rw-r--r-- | src/input_actions.hpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/input_actions.hpp b/src/input_actions.hpp deleted file mode 100644 index b9c33c1..0000000 --- a/src/input_actions.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -#include "interfaces/cursor.hpp" -#include "interfaces/observable.hpp" -#include "interfaces/scene.hpp" -#include "interfaces/window.hpp" - -#include "engine/data/vector2.hpp" - -#include <memory> - -namespace InputActions -{ - -void exit_success() noexcept; - -Callback move_cursor(const Vector2 &direction, - const std::shared_ptr<ICursorController> &cursor_controller, - const std::shared_ptr<IScene> &scene, - const std::shared_ptr<IWindow> &window) noexcept; - -} // namespace InputActions |