Decoders: Add IOpCode32HasSetFlags (#3136)

This commit is contained in:
merry 2022-02-18 00:33:43 +00:00 committed by GitHub
parent 95cc18a7b4
commit 747876dc67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 5 deletions

View file

@ -0,0 +1,7 @@
namespace ARMeilleure.Decoders
{
interface IOpCode32HasSetFlags
{
bool? SetFlags { get; }
}
}