NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Character/Team/Troops.cs

17 lines
331 B
C#

using System.Collections.Generic;
namespace Gameplay.Character
{
public class Troops
{
public int troopsId;
public readonly List<Character> characters;
public Troops(int troopsId)
{
this.troopsId = troopsId;
characters = new List<Character>();
}
}
}