Files
mist/utils/scene.rb
T
syedm bf93aecad1 Refactor event bus to use non-retrievable events;
update collision handling and add new inventory initialization;
add torch lighting in fog shader;
2026-03-28 11:38:20 +00:00

19 lines
189 B
Ruby

class Scene
# Base class for all scenes.
def initialize
end
def update
end
def draw
end
def button_down(id, pos)
end
def close
$bus.remove_owner(self)
end
end