1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-25 22:27:45 +00:00
project-meteor-server/FFXIVClassic Map Server/actors/chara/ai/state/AttackState.cs

44 lines
760 B
C#
Raw Normal View History

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()
{
}
}
}