project-meteor-server/FFXIVClassic Map Server/actors/chara/ai/state/AttackState.cs
Tahir Akhlaq 62055eff04 stubbed some more functions from kj's ai stuff
- fixed some typos
- cleaned some debug code
2017-06-29 21:54:30 +01:00

45 lines
868 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;
// todo: should handle everything here instead of on next tick..
}
public override void OnStart()
{
}
public override void Update(DateTime time)
{
}
public override void OnInterrupt()
{
}
public override void OnComplete()
{
isCompleted = true;
}
public override void TryInterrupt()
{
}
}
}