aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/RectangleF.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/RectangleF.cs')
-rw-r--r--Ryujinx.Graphics.GAL/RectangleF.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Ryujinx.Graphics.GAL/RectangleF.cs b/Ryujinx.Graphics.GAL/RectangleF.cs
deleted file mode 100644
index cf166781..00000000
--- a/Ryujinx.Graphics.GAL/RectangleF.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-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;
- }
- }
-}