mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Improving DatLoader for third-party apps * Adding some missing filetypes (thanks OptimShi!) * Adding more enums, using SmartArray * Re-adding loadCell * Reverting to UInt32
10 lines
124 B
C#
10 lines
124 B
C#
using System;
|
|
|
|
namespace ACE.Entity.Enum
|
|
{
|
|
[Flags]
|
|
public enum AnimationFlags
|
|
{
|
|
PosFrames = 0x1
|
|
}
|
|
}
|