Kernel_bin.Target.cs 577 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace OpenVIII
  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 :byte
  12. {
  13. None = 0x0,
  14. Dead = 0x1,
  15. UNK02 = 0x2,
  16. Ally = 0x4,// was unk04
  17. Single_Side = 0x8,
  18. Single_Target = 0x10,
  19. UNK20 = 0x20,
  20. Enemy = 0x40,
  21. UNK80 = 0x80,
  22. }
  23. }
  24. }