Ryujinx/Ryujinx.Graphics.Texture/Size.cs

16 lines
347 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.Texture
{
public readonly struct Size
2019-10-13 08:02:07 +02:00
{
public int Width { get; }
public int Height { get; }
public int Depth { get; }
public Size(int width, int height, int depth)
{
Width = width;
Height = height;
Depth = depth;
}
}
}