void i_input_init(void);
-/* sets an input to held
- * the scancode and modifiers have to match
- * if no event map is present the event is dropped
- * This should be called by the platforms event polling function
- * to pass events as inputs to the engine
- * should be called by p_poll_events
- */
-void i_input_set(u16 scan_code, lrts_bool mod_shift, lrts_bool mod_alt,
- lrts_bool mod_ctrl, lrts_bool mod_super, lrts_bool key_state);
-
/* updates input history by shifting pressed bitfield over by 1 and oring it with the held state */
void i_input_update(void);