Files
space_game_server/lib/game_server.rb
T

9 lines
150 B
Ruby

module GameServer
class App
def self.start
world = Simulation::World.new
Server::WebSocketServer.new(world).start
end
end
end