| 20 | } |
| 21 | |
| 22 | pub struct App { |
| 23 | pub window: Window, |
| 24 | pub gfx: Graphics, |
| 25 | pub input: Input, |
| 26 | pub timer: Timer, |
| 27 | |
| 28 | pub is_running: bool, |
| 29 | } |
| 30 | |
| 31 | impl App { |
| 32 | pub fn new(title: &str, width: i32, height: i32, tick_rate: f64) -> App { |
nothing calls this directly
no outgoing calls
no test coverage detected