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