Huge amount of updates

This commit is contained in:
2025-02-12 13:07:21 +01:00
parent 349b6b7226
commit 687c2ae1f5
96 changed files with 15637 additions and 156 deletions

View File

@ -0,0 +1,21 @@
class_name PlayerData extends Resource
@export var id: int = 0
@export var username: String = ""
@export var score: int = 0
@export var damage: int = 0
@export var headshots: int = 0
enum Side {
BLUE = 0,
RED = 1,
UNDEFINED = -1,
}
const blue = "attack"
const red = "defend"
const underfined = "unddefined"
@export var side: PlayerData.Side = Side.UNDEFINED
@export var active: bool = false