Initial commit
This commit is contained in:
commit
0f86b0434b
38 changed files with 2370 additions and 0 deletions
15
LibDgf/Aqualead/Archive/AlAarEntryFlags.cs
Normal file
15
LibDgf/Aqualead/Archive/AlAarEntryFlags.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace LibDgf.Aqualead.Archive
|
||||
{
|
||||
[Flags]
|
||||
public enum AlAarEntryFlags : byte
|
||||
{
|
||||
IsResident = 1 << 0,
|
||||
IsPrepare = 1 << 1,
|
||||
Unknown2 = 1 << 6,
|
||||
IsUseName = 1 << 7
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue