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

3444
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,3 +7,7 @@ edition = "2021"
[dependencies]
rand = "0.8.5"
bevy = "0.10"

1
src/lib.rs Normal file
View File

@@ -0,0 +1 @@
pub struct BoardPlugin;

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();
}