21 lines
413 B
C#
21 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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>();
|
|
}
|
|
}
|
|
}
|