1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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; } } }