Home
last modified time | relevance | path

Searched refs:KeyboardInputHandler (Results 1 – 2 of 2) sorted by relevance

/StarryEngine/starry_server/src/core/input/
H A Dinputs.rs132 pub struct KeyboardInputHandler { struct
137 impl KeyboardInputHandler { implementation
138 pub fn new() -> Box<KeyboardInputHandler> { in new()
141 Box::new(KeyboardInputHandler { file: file }) in new()
145 impl InputHandler for KeyboardInputHandler { implementation
H A Dmod.rs5 use self::inputs::{KeyboardInputHandler, MouseInputHandler};
29 input_handlers.push(KeyboardInputHandler::new() as Box<dyn InputHandler>); in new()