Initial commit
This commit is contained in:
commit
0f86b0434b
38 changed files with 2370 additions and 0 deletions
14
LibDgf/Aqualead/Texture/AlTextureEntryFlags.cs
Normal file
14
LibDgf/Aqualead/Texture/AlTextureEntryFlags.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue