1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-18 05:40:04 -06:00
ryujinx/ChocolArm64/Decoders/IOpCodeCond64.cs

7 lines
118 B
C#
Raw Normal View History

namespace ChocolArm64.Decoders
{
interface IOpCodeCond64 : IOpCode64
{
Condition Cond { get; }
}
}