fullscreen, resizable = false

This commit is contained in:
sparshg 2023-01-24 17:50:56 +05:30
parent 991df7d76e
commit e50d1f4954
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ pub const HEIGHT: f32 = 780.;
fn window_conf() -> Conf {
Conf {
window_title: "Asteroids".to_string(),
// fullscreen: true,
fullscreen: false,
window_resizable: false,
window_width: 1400,
window_height: 800,
..Default::default()