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.Common/Memory/IArray.cs | 21 ---------------------
1 file changed, 21 deletions(-)
delete mode 100644 Ryujinx.Common/Memory/IArray.cs
(limited to 'Ryujinx.Common/Memory/IArray.cs')
diff --git a/Ryujinx.Common/Memory/IArray.cs b/Ryujinx.Common/Memory/IArray.cs
deleted file mode 100644
index 8f17fade..00000000
--- a/Ryujinx.Common/Memory/IArray.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace Ryujinx.Common.Memory
-{
- ///
- /// Array interface.
- ///
- /// Element type
- public interface IArray where T : unmanaged
- {
- ///
- /// Used to index the array.
- ///
- /// Element index
- /// Element at the specified index
- ref T this[int index] { get; }
-
- ///
- /// Number of elements on the array.
- ///
- int Length { get; }
- }
-}
--
cgit v1.2.3