WIP: Something

This commit is contained in:
Nikolai Rodionov
2025-02-17 17:34:47 +01:00
parent 1323dbf154
commit 37154955d6
6 changed files with 29 additions and 17 deletions

View File

@ -21,11 +21,11 @@ func player_data_into_dict(player_data: PlayerData) -> Dictionary:
var side: String
match player_data.side:
-1:
side = "undefined"
side = PlayerData.underfined
0:
side = "attack"
side = PlayerData.blue
1:
side = "defend"
side = PlayerData.red
result["side"] = side
return result