blob: 8283d7893333d09de5869ee51102a332164e0e64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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
{
Callback move_cursor(const Vector2 &direction,
const std::shared_ptr<ICursorController> &cursor_controller,
const std::shared_ptr<IWindow> &window);
void exit_success();
} // namespace InputActions
|