This commit is contained in:
Unic-X
2023-08-10 00:32:05 +05:30
parent 87f4535f88
commit f654d7288d
4 changed files with 3459 additions and 2 deletions

View File

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