ryujinx/src/Ryujinx.HLE/Debugger/Message/CommandMessage.cs
Coxxs 4a8463c2f7 Add GDB Stub
Author: merry, svc64
2025-06-20 16:17:28 +08:00

12 lines
205 B
C#

namespace Ryujinx.HLE.Debugger
{
struct CommandMessage : IMessage
{
public string Command;
public CommandMessage(string cmd)
{
Command = cmd;
}
}
}