mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:18:31 +00:00
19 lines
421 B
C#
19 lines
421 B
C#
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public struct RectangleF
|
|
{
|
|
public float X { get; }
|
|
public float Y { get; }
|
|
public float Width { get; }
|
|
public float Height { get; }
|
|
|
|
public RectangleF(float x, float y, float width, float height)
|
|
{
|
|
X = x;
|
|
Y = y;
|
|
Width = width;
|
|
Height = height;
|
|
}
|
|
}
|
|
}
|