diff options
Diffstat (limited to 'ChocolArm64/Translation/TranslatorQueueItem.cs')
| -rw-r--r-- | ChocolArm64/Translation/TranslatorQueueItem.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ChocolArm64/Translation/TranslatorQueueItem.cs b/ChocolArm64/Translation/TranslatorQueueItem.cs new file mode 100644 index 00000000..0988414a --- /dev/null +++ b/ChocolArm64/Translation/TranslatorQueueItem.cs @@ -0,0 +1,20 @@ +using ChocolArm64.State; + +namespace ChocolArm64.Translation +{ + struct TranslatorQueueItem + { + public long Position { get; } + + public ExecutionMode Mode { get; } + + public TranslationTier Tier { get; } + + public TranslatorQueueItem(long position, ExecutionMode mode, TranslationTier tier) + { + Position = position; + Mode = mode; + Tier = tier; + } + } +}
\ No newline at end of file |
