Ejemplo n.º 1
0
 public UnitStateAttack(BattleUnit bu) : base(UnitStateType.Attack, bu)
 {
 }
Ejemplo n.º 2
0
 public UnitState(UnitStateType type, BattleUnit unit)
 {
     this.Type = type;
     m_Unit    = unit;
 }
Ejemplo n.º 3
0
 public UnitStateEmpower(BattleUnit bu) : base(UnitStateType.Empowering, bu)
 {
 }
Ejemplo n.º 4
0
 public UnitStateRest(BattleUnit bu) : base(UnitStateType.Rest, bu)
 {
 }
Ejemplo n.º 5
0
 public UnitStateIdle(BattleUnit bu) : base(UnitStateType.Idle, bu)
 {
 }
Ejemplo n.º 6
0
 public void Init(SkillData data, BattleUnit unit)
 {
     m_Data = data;
     m_Unit = unit;
 }