2023-12-14 14:42:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
2023-08-22 19:08:45 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Gameplay.Character
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Troops
|
|
|
|
|
|
{
|
|
|
|
|
|
public int troopsId;
|
2023-10-19 15:00:19 +08:00
|
|
|
|
public readonly List<Character> characters;
|
2023-08-22 19:08:45 +08:00
|
|
|
|
|
|
|
|
|
|
public Troops(int troopsId)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.troopsId = troopsId;
|
|
|
|
|
|
characters = new List<Character>();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|