height map generator

This commit is contained in:
2024-03-24 21:36:26 -04:00
commit e9757a5371
13 changed files with 4650 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[workspace]
members = [
"game/main",
"engine/world_generation"
]
resolver = "2"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3