initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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.unlisten_owner(self)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user