Stash work

This commit is contained in:
Michal Pikulski
2025-12-02 23:56:13 +01:00
parent dc038b8c4c
commit f69db57bd7
103 changed files with 10123 additions and 903 deletions

View File

@@ -0,0 +1,23 @@
using System;
namespace Minigames.FortFight.Data
{
/// <summary>
/// Represents a player in the Fort Fight minigame
/// </summary>
[Serializable]
public class PlayerData
{
public string PlayerName;
public bool IsAI;
public int PlayerIndex; // 0 for Player One, 1 for Player Two/AI
public PlayerData(string name, bool isAI, int playerIndex)
{
PlayerName = name;
IsAI = isAI;
PlayerIndex = playerIndex;
}
}
}