Beginning interaction stuff

This commit is contained in:
2025-02-26 09:34:26 -06:00
parent 3914d6c1a7
commit 22f9af5417
5 changed files with 50 additions and 31 deletions

View File

@@ -15,7 +15,7 @@ place_random_trees :: proc(w:^World) {
chance := rand.int_max(100)
if chance <= 10 {
if chance <= 5 {
w.grid[x][y] = tree_tile
}
}