zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/Skill/Component/TargetableUnit.cs

19 lines
362 B
C#

using System;
using System.Collections.Generic;
namespace ET
{
public abstract class TargetableUnitBase : Entity
{
}
public class TargetableSingleUnit : TargetableUnitBase
{
public Unit target;
}
public class TargetableMultiUnit : TargetableUnitBase
{
public List<Unit> targetList = new List<Unit>();
}
}