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
ReadMe.md Normal file
View File

@@ -0,0 +1,8 @@
# Insert Simulation Name
Maybe I will add a description
## Start the project
```
cd project
cargo run --release
```

BIN
SDL2.dll Normal file

Binary file not shown.

BIN
SDL2.lib Normal file

Binary file not shown.

View File

@@ -14,7 +14,7 @@ const BIRD_SPEED:i32 = 2;
const MAX_BIRD_SPEED:i32 = 10;
const BIRDS_COUNT:i32 = 50;
const MIN_BIRD_SIZE:i32 = 20;
const MAX_BIRD_SIZE:i32 = 50;
const MAX_BIRD_SIZE:i32 = 30;
pub struct Bird{
shape:Rect,