| 18 | public class Keyboard { |
| 19 | |
| 20 | public interface OnKeyDown { |
| 21 | Hold onKeyDown(Window.Event<Window.KeyboardState> e, int key); |
| 22 | } |
| 23 | |
| 24 | public interface OnCharTyped { |
| 25 | void onCharTyped(Window.Event<Window.KeyboardState> e, char key); |
no outgoing calls
no test coverage detected