mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 00:16:23 +02:00
12 lines
205 B
C#
12 lines
205 B
C#
namespace Ryujinx.HLE.Debugger
|
|
{
|
|
struct CommandMessage : IMessage
|
|
{
|
|
public string Command;
|
|
|
|
public CommandMessage(string cmd)
|
|
{
|
|
Command = cmd;
|
|
}
|
|
}
|
|
}
|