Initial push

This commit is contained in:
N0ble 2025-07-21 20:38:11 -06:00
commit 3240f07946
335 changed files with 11248 additions and 0 deletions

29
Scripts/global.gd Normal file
View file

@ -0,0 +1,29 @@
extends Node
#region Constants
const DEFAULT_ENET_ADDRESS = "127.0.0.1"
#endregion
#region Variables
var is_admin : bool = true
var is_multiplayer : bool = false
var steam_connected : bool = false
var in_game : bool = false
var in_menu : bool = false
var inventory_showing : bool = false
var enet_address : String = DEFAULT_ENET_ADDRESS
var steam_lobby_id : String = ""
var controller_connected : bool = false
var voip_on : bool = false
#endregion