| 53 | } |
| 54 | #[repr(C)] |
| 55 | pub struct Input { |
| 56 | pub mx: usize, |
| 57 | pub my: usize, |
| 58 | pub keys: [u8; 1024], |
| 59 | pub history_last_index: usize, |
| 60 | pub history_ring: [InputEvent; HISTORY_SIZE], |
| 61 | } |
| 62 | |
| 63 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 64 | #[repr(C)] |
nothing calls this directly
no outgoing calls
no test coverage detected