aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IOpCodeRegCbuf.cs
blob: 429f01bb7f2351d935f721b4b47058b4b3d8f5b5 (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.Graphics.Shader.Decoders
{
    interface IOpCodeRegCbuf : IOpCodeRc
    {
        int Offset { get; }
        int Slot   { get; }
    }
}