mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-16 08:02:36 +00:00
22 lines
245 B
Ruby
22 lines
245 B
Ruby
class IMICFPS
|
|
class GameState
|
|
include CommonMethods
|
|
|
|
def initialize
|
|
@delta_time = Gosu.milliseconds
|
|
setup
|
|
end
|
|
|
|
def setup
|
|
end
|
|
|
|
def draw
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
def button_up(id)
|
|
end
|
|
end
|
|
end |