mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
- added global tick - stubbed some more functions - added checks for engaged/dead - todo: everything else
44 lines
760 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|