(&mut self, x: f32, y: f32, z: f32)
| 205 | if !was_down { |
| 206 | self.buttons_down[word] |= bit; |
| 207 | self.buttons_pressed[word] |= bit; |
| 208 | } |
| 209 | } else if was_down { |
| 210 | self.buttons_down[word] &= !bit; |
| 211 | self.buttons_released[word] |= bit; |
| 212 | } |
no outgoing calls
no test coverage detected