ryujinx/src/Ryujinx.HLE/Debugger/DebugState.cs
Coxxs a553958479 Add GDB Stub
Author: merry, svc64
2025-06-21 12:54:39 +08:00

9 lines
126 B
C#

namespace Ryujinx.HLE.Debugger
{
public enum DebugState
{
Running,
Stopping,
Stopped,
}
}