Han Damin
Han Damin
I like structure that can be dynamically created and extended. First, what about resolution cateogry? ex: ```rust pub enum ResolutionCategory { HD, FHD, QHD, Mobile, Ultrawide, } impl CommonScreenResolution {...
My opinion is same as @IceSentry. As example, i made this code. I don't know this is good code. ```rust use bevy_math::AspectRatio; pub struct Resolution { width: u32, height: u32,...
+ find_by_category