Flag1.cs 586 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Diagnostics.CodeAnalysis;
  3. namespace OpenVIII.Battle.Dat
  4. {
  5. /// <summary>
  6. /// Section 7: Information Flags 1
  7. /// </summary>
  8. /// <seealso cref="http://wiki.ffrtt.ru/index.php/FF8/FileFormat_DAT#Section_7:_Informations_.26_stats"/>
  9. [Flags]
  10. [SuppressMessage("ReSharper", "UnusedMember.Global")]
  11. public enum Flag1 : byte
  12. {
  13. None = 0,
  14. Zombie = 0x1,
  15. Fly = 0x2,
  16. Zz1 = 0x4,
  17. Zz2 = 0x8,
  18. Zz3 = 0x10,
  19. AutoReflect = 0x20,
  20. AutoShell = 0x40,
  21. AutoProtect = 0x80,
  22. }
  23. }