aboutsummaryrefslogtreecommitdiff
path: root/src/input_actions.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-20 13:17:16 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:56 +0200
commit78f5d8cf644383adf20933ad64c160c07c2c54fb (patch)
tree2a348d90f8f150665c379bf2f3741731999dd679 /src/input_actions.hpp
parentb6061eff99907495de282f611e8389e6468a1fb0 (diff)
refactor: improve input configuring structure
Diffstat (limited to 'src/input_actions.hpp')
-rw-r--r--src/input_actions.hpp22
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