mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-05 17:58:28 +02:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Graphics.Texture/Region.cs
Normal file
14
src/Ryujinx.Graphics.Texture/Region.cs
Normal file
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user