[AddonEventManager] Add Cursor Control

This commit is contained in:
MidoriKami 2023-09-02 00:06:54 -07:00
parent 7ac37a579b
commit ad06b5f054
4 changed files with 196 additions and 4 deletions

View file

@ -33,4 +33,15 @@ public interface IAddonEventManager
/// <param name="atkResNode">The node for this event.</param>
/// <param name="eventType">The event type for this event.</param>
void RemoveEvent(uint eventId, nint atkUnitBase, nint atkResNode, AddonEventType eventType);
/// <summary>
/// Force the game cursor to be the specified cursor.
/// </summary>
/// <param name="cursor">Which cursor to use.</param>
void SetCursor(AddonCursorType cursor);
/// <summary>
/// Un-forces the game cursor.
/// </summary>
void ResetCursor();
}