And once again

This commit is contained in:
2025-02-18 13:30:48 +01:00
parent 37154955d6
commit 16b06ba642
77 changed files with 581 additions and 199 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 = "undefined"
@export var side: PlayerData.Side = Side.UNDEFINED
@export var active: bool = false