aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/ValueRange.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/ValueRange.cs')
-rw-r--r--Ryujinx.Graphics/ValueRange.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Ryujinx.Graphics/ValueRange.cs b/Ryujinx.Graphics/ValueRange.cs
deleted file mode 100644
index 6298bd8e..00000000
--- a/Ryujinx.Graphics/ValueRange.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace Ryujinx.Graphics
-{
- struct ValueRange<T>
- {
- public long Start { get; private set; }
- public long End { get; private set; }
-
- public T Value { get; set; }
-
- public ValueRange(long Start, long End, T Value = default(T))
- {
- this.Start = Start;
- this.End = End;
- this.Value = Value;
- }
- }
-} \ No newline at end of file