mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-02-26 02:31:08 +00:00
13 lines
205 B
C#
13 lines
205 B
C#
namespace Ryujinx.HLE.Debugger
|
|
{
|
|
struct CommandMessage : IMessage
|
|
{
|
|
public string Command;
|
|
|
|
public CommandMessage(string cmd)
|
|
{
|
|
Command = cmd;
|
|
}
|
|
}
|
|
}
|