aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Texture/Region.cs
blob: aeb7f91840b91c62b119180948c89da8fac4337e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Texture
{
    public readonly struct Region
    {
        public int Offset { get; }
        public int Size { get; }

        public Region(int offset, int size)
        {
            Offset = offset;
            Size = size;
        }
    }
}