using System;
using System.Diagnostics.CodeAnalysis;
namespace OpenVIII.Battle.Dat
{
///
/// Section 7: Information Flags 1
///
///
[Flags]
[SuppressMessage("ReSharper", "UnusedMember.Global")]
public enum Flag1 : byte
{
None = 0,
Zombie = 0x1,
Fly = 0x2,
Zz1 = 0x4,
Zz2 = 0x8,
Zz3 = 0x10,
AutoReflect = 0x20,
AutoShell = 0x40,
AutoProtect = 0x80,
}
}