This repository has been archived on 2023-12-19. You can view files and clone it, but cannot push or open issues or pull requests.
MUR/scripts/networking/game_server.gd

14 lines
326 B
GDScript3
Raw Normal View History

2019-07-23 19:49:04 +02:00
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