Working on major restructuring
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
module GameServer
|
||||
module Simulation
|
||||
class World
|
||||
attr_reader :time
|
||||
|
||||
def initialize
|
||||
@time = 0.0
|
||||
end
|
||||
|
||||
def advance(delta)
|
||||
@time += delta
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user