mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-21 01:59:49 +00:00
13 lines
380 B
C#
13 lines
380 B
C#
using Daybreak.API.Interop;
|
|
|
|
namespace Daybreak.API.Models;
|
|
|
|
public sealed class HookState
|
|
{
|
|
public required bool Hooked { get; init; }
|
|
public required string Name { get; init; }
|
|
public required PointerValue TargetAddress { get; init; }
|
|
public required PointerValue ContinueAddress { get; init; }
|
|
public required PointerValue DetourAddress { get; init; }
|
|
}
|