From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.Graphics.Vic/Rectangle.cs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Ryujinx.Graphics.Vic/Rectangle.cs (limited to 'Ryujinx.Graphics.Vic/Rectangle.cs') diff --git a/Ryujinx.Graphics.Vic/Rectangle.cs b/Ryujinx.Graphics.Vic/Rectangle.cs deleted file mode 100644 index 8a8dd63a..00000000 --- a/Ryujinx.Graphics.Vic/Rectangle.cs +++ /dev/null @@ -1,18 +0,0 @@ -namespace Ryujinx.Graphics.Vic -{ - readonly struct Rectangle - { - public readonly int X; - public readonly int Y; - public readonly int Width; - public readonly int Height; - - public Rectangle(int x, int y, int width, int height) - { - X = x; - Y = y; - Width = width; - Height = height; - } - } -} \ No newline at end of file -- cgit v1.2.3