Skip to main content

ferrum_wgpu/config/
config.rs

1pub struct WindowSize {
2    pub width: u32,
3    pub height: u32,
4}
5
6impl WindowSize {
7    pub fn new(width: u32, height: u32) -> Self {
8        Self { width, height }
9    }
10}