Files
Cubed/src/input.cpp

9 lines
149 B
C++

#include <Cubed/input.hpp>
static InputState input_state;
namespace Input {
InputState& get_input_state() {
return input_state;
}
}