mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-06-17 16:17:02 +08:00
13 lines
195 B
C++
13 lines
195 B
C++
#include "Cubed/input.hpp"
|
|
|
|
namespace Cubed {
|
|
|
|
static InputState input_state;
|
|
|
|
namespace Input {
|
|
|
|
InputState& get_input_state() { return input_state; }
|
|
|
|
} // namespace Input
|
|
|
|
} // namespace Cubed
|