Addded libs for easier deployment

This commit is contained in:
2022-05-10 15:46:10 +02:00
parent f9673cb7c4
commit 0c2bbdccfd
4 changed files with 9 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
# Insert Simulation Name
Maybe I will add a description
## Start the project
```
cd project
cargo run --release
```
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -14,7 +14,7 @@ const BIRD_SPEED:i32 = 2;
const MAX_BIRD_SPEED:i32 = 10; const MAX_BIRD_SPEED:i32 = 10;
const BIRDS_COUNT:i32 = 50; const BIRDS_COUNT:i32 = 50;
const MIN_BIRD_SIZE:i32 = 20; const MIN_BIRD_SIZE:i32 = 20;
const MAX_BIRD_SIZE:i32 = 50; const MAX_BIRD_SIZE:i32 = 30;
pub struct Bird{ pub struct Bird{
shape:Rect, shape:Rect,