aboutsummaryrefslogtreecommitdiff
path: root/src/world.odin
diff options
context:
space:
mode:
authoriamcheeseman <[hidden email]>2026-02-27 23:23:16 -0500
committeriamcheeseman <[hidden email]>2026-02-27 23:23:16 -0500
commit97e7909e4d730524b3ea319fa86520ed3bb3df5c (patch)
treea95a7fc3fe27e3391814b4c06ae04affdb2818ed /src/world.odin
parentf45cafdf46455768985e3d3a118bbca1839e937f (diff)
use odin's new handle maps rather than my own
Diffstat (limited to 'src/world.odin')
-rw-r--r--src/world.odin1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/world.odin b/src/world.odin
index d333a44..043a7eb 100644
--- a/src/world.odin
+++ b/src/world.odin
@@ -115,6 +115,7 @@ draw_room :: proc(id: Room_Id) {
Room_Iterate_Callback :: proc(_: i32, _: i32, _: u32)
+// TODO: change this to be an iterator struct
iterate_room_tiles :: proc(id: Room_Id, callback: Room_Iterate_Callback) {
room := get_room(id)