9 lines
150 B
Ruby
9 lines
150 B
Ruby
module GameServer
|
|
class App
|
|
def self.start
|
|
world = Simulation::World.new
|
|
Server::WebSocketServer.new(world).start
|
|
end
|
|
end
|
|
end
|