Ryujinx/Ryujinx.HLE/Debugger/Message/CommandMessage.cs

13 lines
208 B
C#
Raw Normal View History

2022-02-08 19:50:26 +00:00
namespace Ryujinx.HLE.Debugger
{
struct CommandMessage : IMessage
{
public string Command;
public CommandMessage(string cmd)
{
Command = cmd;
}
}
}