You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[System.Serializable]
public class Player
{
[Foldout("DATA OBJECT", true)]
public int hp;
public int attack = 20;
[Foldout("DATA ATTACK")]
public int AT;
}
public class PlayerManager : Monobehaviour
{
public List<Player> _Players;
}