Update 6.8

This commit is contained in:
chardub
2026-07-10 15:42:06 -04:00
parent 5b85e72cb2
commit 6a6f126a18
7871 changed files with 493194 additions and 224826 deletions
@@ -0,0 +1,29 @@
# [:i]: Unpassable and Interactable
# [:x]: Unpassable
# [] : Passable
# ex:
# [
# [[:x],[:x],[:x]],
# [[:i],[:i],[:i]
# ]
# -> 2 rows, only interactable from the bottom
class SecretBaseItemCollisionMap
attr_accessor :collision_map
def initialize(collisions_array = [])
@collision_map = collisions_array
end
#todo
def get_interactable_tiles
end
#todo
def get passable_tiles
end
end