This commit is contained in:
Unic-X
2023-08-10 00:34:22 +05:30
parent f654d7288d
commit 79a2b64d9b
5 changed files with 21 additions and 13 deletions

View File

@@ -1,14 +1,6 @@
use bevy::prelude::*;
mod board;
use board::display;
fn main() {
App::build().add_resources(Msaa{samples: 4})
.add_resource(WindowDescriptor{
title:"Chess!".to_string(),
width:1600.,
height:1600.,
..Default::default()
})
.add_plugins(DefaultPlugins).run();
display(4);
}