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/ExtensionKind.cs

15 lines
171 B
C#

namespace GMAssetCompiler
{
internal enum ExtensionKind
{
Error = -1,
Undefined = 0,
Dll = 1,
Gml = 2,
Lib = 3,
Other = 4,
Stdcall = 11,
Cdecl = 12
}
}