mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-16 21:36:33 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
15 lines
272 B
C#
15 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;
|
|
}
|
|
}
|
|
}
|