mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-15 15:10:33 +00:00
14 lines
275 B
C#
14 lines
275 B
C#
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;
|
|
}
|
|
}
|
|
}
|