mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
10 lines
177 B
C#
10 lines
177 B
C#
namespace Daybreak.API.Interop;
|
|
|
|
public interface IHook<T>
|
|
: IDisposable where T : Delegate
|
|
{
|
|
public T Continue { get; }
|
|
|
|
public nuint ContinueAddress { get; }
|
|
}
|