13 lines
248 B
C#
13 lines
248 B
C#
|
|
using Gameplay.Common;
|
|||
|
|
namespace Gameplay.PlayerSkill.Unit
|
|||
|
|
{
|
|||
|
|
public class FakePlayerUnit : GameUnit
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public FakePlayerUnit(uint id,
|
|||
|
|
int troopId) : base(id, troopId, EGameUnitType.Player)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|