mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-15 20:37:42 +01:00
shit codes
This commit is contained in:
parent
d663252ed1
commit
2a82a16301
10 changed files with 322 additions and 113 deletions
14
Dalamud.Injector/Windows/NtException.cs
Normal file
14
Dalamud.Injector/Windows/NtException.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace Dalamud.Injector.Windows
|
||||
{
|
||||
internal sealed class NtException : Exception
|
||||
{
|
||||
public NtStatus Status { get; }
|
||||
|
||||
public NtException(NtStatus status)
|
||||
{
|
||||
Status = status;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue