blob: 35611b987a1f731c08850efa5efae6aae96fa0b8 (
plain) (
tree)
|
|
namespace Ryujinx.Graphics.Texture
{
public struct Size
{
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;
}
}
}
|