strafe-client/src/window.rs

9 lines
245 B
Rust
Raw Normal View History

2023-10-20 02:36:54 +00:00
struct WindowState{
//ok
}
impl WindowState{
fn resize(&mut self);
fn update(&mut self, window: &winit::window::Window, event: WindowEvent);
fn device_event(&mut self, window: &winit::window::Window, event: DeviceEvent);
fn render(&self);
}