#ifndef INPUT_HH #define INPUT_HH enum { INPUT_MOVE_UP = 0x01, INPUT_MOVE_DOWN = 0x02, INPUT_MOVE_LEFT = 0x04, INPUT_MOVE_RIGHT = 0x08, }; typedef uint16_t PlayerInput_Move; #endif