I may have used ai for some of the proc gen..

This commit is contained in:
2025-03-01 22:52:34 -06:00
parent 8c0601c7aa
commit 2be653504a
9 changed files with 599 additions and 62 deletions

14
game/structures.odin Normal file
View File

@@ -0,0 +1,14 @@
package game
Structure :: struct {
name:string,
tile_map:[dynamic][dynamic]Tile,
// Other data here later like NPCs and enemies?
}
test_structure := Structure {
name = "Test",
tile_map = {
// Make a structure here?????
}
}