diff --git a/Dalamud/Hooking/IDalamudHook.cs b/Dalamud/Hooking/IDalamudHook.cs index fb756229d..d33fa47b8 100644 --- a/Dalamud/Hooking/IDalamudHook.cs +++ b/Dalamud/Hooking/IDalamudHook.cs @@ -1,9 +1,25 @@ using System; -namespace Dalamud.Hooking { - internal interface IDalamudHook { +namespace Dalamud.Hooking +{ + /// + /// Interface describing a generic hook. + /// + internal interface IDalamudHook + { + /// + /// Gets the address to hook. + /// public IntPtr Address { get; } + + /// + /// Gets a value indicating whether or not the hook is enabled. + /// public bool IsEnabled { get; } + + /// + /// Gets a value indicating whether or not the hook is disposed. + /// public bool IsDisposed { get; } } }