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

15 lines
158 B
C#

using System;
namespace GMAssetCompiler
{
[Flags]
public enum IFFChunkType
{
CPU = 0x1,
GPU = 0x2,
Audio = 0x4,
Align = 0x8,
Offset = 0x10
}
}