mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 06:30:18 +00:00
12 lines
208 B
C#
12 lines
208 B
C#
namespace Ryujinx.HLE.Debugger
|
|
{
|
|
struct CommandMessage : IMessage
|
|
{
|
|
public string Command;
|
|
|
|
public CommandMessage(string cmd)
|
|
{
|
|
Command = cmd;
|
|
}
|
|
}
|
|
}
|