libdgf/LibDgf/Aqualead/Texture/AlTextureFlags.cs
2021-02-16 01:04:29 -07:00

14 lines
266 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LibDgf.Aqualead.Texture
{
[Flags]
public enum AlTextureFlags : byte
{
IsSpecial = 1 << 1,
IsIndirect = 1 << 2,
IsOverrideDimensions = 1 << 3
}
}