mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-24 17:17:11 +02:00
14 lines
272 B
C#
14 lines
272 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;
|
|
}
|
|
}
|
|
}
|