aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Translation/TranslatorQueueItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Translation/TranslatorQueueItem.cs')
-rw-r--r--ChocolArm64/Translation/TranslatorQueueItem.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/ChocolArm64/Translation/TranslatorQueueItem.cs b/ChocolArm64/Translation/TranslatorQueueItem.cs
deleted file mode 100644
index dde2706d..00000000
--- a/ChocolArm64/Translation/TranslatorQueueItem.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using ChocolArm64.State;
-
-namespace ChocolArm64.Translation
-{
- struct TranslatorQueueItem
- {
- public long Position { get; }
-
- public ExecutionMode Mode { get; }
-
- public TranslationTier Tier { get; }
-
- public bool IsComplete { get; }
-
- public TranslatorQueueItem(
- long position,
- ExecutionMode mode,
- TranslationTier tier,
- bool isComplete = false)
- {
- Position = position;
- Mode = mode;
- Tier = tier;
- IsComplete = isComplete;
- }
- }
-} \ No newline at end of file