forked from liza/Questionable
17 lines
288 B
C#
17 lines
288 B
C#
using Dalamud.Game.ClientState.Objects.Types;
|
|
|
|
namespace Questionable.Controller.CombatModules;
|
|
|
|
internal interface ICombatModule
|
|
{
|
|
bool IsLoaded { get; }
|
|
|
|
bool Start();
|
|
|
|
bool Stop();
|
|
|
|
void Update(IGameObject nextTarget);
|
|
|
|
void SetTarget(IGameObject nextTarget);
|
|
}
|