project-meteor-server/FFXIVClassic Map Server/actors/chara/ai/state/AttackState.cs
Tahir Akhlaq 2c9ae60bbf corrected mob to use correct substate
- added global tick
- stubbed some more functions
- added checks for engaged/dead
- todo: everything else
2017-06-29 19:14:05 +01:00

44 lines
760 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FFXIVClassic_Map_Server.Actors;
namespace FFXIVClassic_Map_Server.actors.chara.ai.state
{
class AttackState : State
{
public AttackState(Character owner, Character target) :
base(owner, target)
{
this.startTime = DateTime.Now;
}
public override void OnStart()
{
}
public override void Update(DateTime time)
{
}
public override void OnInterrupt()
{
}
public override void OnComplete()
{
}
public override void TryInterrupt()
{
}
}
}