Public repository for MUR pre alpha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
322 B

extends Spatial
class_name GameServer
const SERVER_ADDR = "127.0.0.1"
const API_ADDR = "http://" + SERVER_ADDR + ":5000/"
const HEADERS = ["Content-Type: application/json"]
const SSL = false
func http():
var game_server_requests = GameServerRequests.new()
add_child(game_server_requests)
return game_server_requests