mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
16 lines
310 B
Ruby
16 lines
310 B
Ruby
class IMICFPS
|
|
class GameState < CyberarmEngine::GameState
|
|
include CommonMethods
|
|
include EntityManager
|
|
include LightManager
|
|
|
|
attr_reader :options
|
|
def initialize(options = {})
|
|
@delta_time = Gosu.milliseconds
|
|
@entities = []
|
|
@lights = []
|
|
|
|
super
|
|
end
|
|
end
|
|
end |