15 lines
257 B
Odin
15 lines
257 B
Odin
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?????
|
|
}
|
|
}
|