20 lines
438 B
C#
20 lines
438 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|