cube-tube/app/classes/scene_instance.rb
2023-04-11 16:26:39 +10:00

18 lines
416 B
Ruby

# frozen_string_literal: true
# class to represent scenes
class SceneInstance
def initialize(_args, opts = {})
@tick_in_background = opts.tick_in_background._? false
@reset_on_pop = opts.reset_on_pop._? false
end
attr_reader :tick_in_background
attr_accessor :reset_on_pop
# called every tick of the game loop
def tick(args) end
# custom logic to reset this scene
def reset(args) end
end