1
0
Fork 0
mirror of https://github.com/Ryujinx/ChocolArm64.git synced 2025-03-08 06:19:47 +00:00
ChocolArm64/Translation/AIoType.cs

15 lines
179 B
C#
Raw Normal View History

using System;
namespace ChocolArm64.Translation
{
[Flags]
enum AIoType
{
Arg,
Fields,
Flag,
Int,
Float,
Vector
}
}