Kernel_bin.Target.cs 527 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace FF8
  3. {
  4. public partial class Kernel_bin
  5. {
  6. /// <summary>
  7. /// Target info
  8. /// </summary>
  9. /// <see cref="https://github.com/alexfilth/doomtrain/blob/master/Doomtrain/MainForm.cs"/>
  10. [Flags]
  11. public enum Target
  12. {
  13. Dead = 0x01,
  14. UNK02 = 02,
  15. UNK04 = 04,
  16. Single_Side = 0x08,
  17. Single_Target = 0x10,
  18. UNK20 = 20,
  19. Enemy = 0x40,
  20. UNK80 = 80,
  21. }
  22. }
  23. }