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.

13 lines
326 B

  1. extends Spatial
  2. class_name GameServer
  3. const SERVER_ADDR = "mur-server.lh8.de"
  4. const API_ADDR = "https://" + SERVER_ADDR + "/"
  5. const HEADERS = ["Content-Type: application/json"]
  6. const SSL = false
  7. func http():
  8. var game_server_requests = GameServerRequests.new()
  9. add_child(game_server_requests)
  10. return game_server_requests