Back
This commit is contained in:
3444
Cargo.lock
generated
3444
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -7,3 +7,7 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
bevy = "0.10"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
1
src/lib.rs
Normal file
1
src/lib.rs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
pub struct BoardPlugin;
|
12
src/main.rs
12
src/main.rs
@@ -1,6 +1,14 @@
|
|||||||
mod piece;
|
use bevy::prelude::*;
|
||||||
|
|
||||||
|
|
||||||
fn main() {
|
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();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user