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

14 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LibDgf.Aqualead.Texture
{
[Flags]
public enum AlTextureEntryFlags : byte
{
IsHasName = 1 << 0,
IsHasCenterPoint = 1 << 1,
IsFiltered = 1 << 2
}
}