mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:28:47 +00:00
19 lines
375 B
C#
19 lines
375 B
C#
using Ryujinx.Common;
|
|
using System;
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |