blob: b01b77eda5871321e3f11acaf6ebaf1feed7970d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace Ryujinx.Graphics
{
struct ChCommand
{
public ChClassId ClassId { get; private set; }
public int MethodOffset { get; private set; }
public int[] Arguments { get; private set; }
public ChCommand(ChClassId classId, int methodOffset, params int[] arguments)
{
ClassId = classId;
MethodOffset = methodOffset;
Arguments = arguments;
}
}
}
|