This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
chovy-gm/GMAssetCompiler/eSquishCPU.cs

15 lines
162 B
C#

using System;
namespace GMAssetCompiler
{
[Flags]
internal enum eSquishCPU
{
kNone = 0x0,
kFPU = 0x1,
kSSE1 = 0x2,
kSSE2 = 0x3,
kALTIVEC = 0x4
}
}