Pong
This commit is contained in:
parent
d7f0070a64
commit
d483541dcb
12 changed files with 884 additions and 1 deletions
|
|
@ -5,6 +5,14 @@ edition = "2024"
|
|||
|
||||
[dependencies]
|
||||
bevy = "0.19.0"
|
||||
chacha20 = { version = "0.10.1", default-features = false, features = ["rng"] }
|
||||
getrandom = "0.4.3"
|
||||
rand = "0.10.2"
|
||||
|
||||
[features]
|
||||
default = ["debug"]
|
||||
debug = ["bevy/debug"]
|
||||
wasm = ["getrandom/wasm_js"]
|
||||
|
||||
# Enable some optimization in development so the game runs well.
|
||||
# Enable more optimization for dependencies because they change less often.
|
||||
|
|
|
|||
Loading…
Reference in a new issue