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
326 B
14 lines
326 B
extends Spatial
|
|
|
|
class_name GameServer
|
|
|
|
const SERVER_ADDR = "mur-server.lh8.de"
|
|
const API_ADDR = "https://" + SERVER_ADDR + "/"
|
|
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
|