| 14 | static SDL_INIT: AtomicBool = AtomicBool::new(false); |
| 15 | |
| 16 | pub struct Window { |
| 17 | window: *mut SDL_Window, |
| 18 | gl: SDL_GLContext, |
| 19 | |
| 20 | visible: bool, |
| 21 | } |
| 22 | |
| 23 | impl Window { |
| 24 | pub fn new(title: &str, width: i32, height: i32) -> Window { |
nothing calls this directly
no outgoing calls
no test coverage detected