Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
382B

  1. namespace Svelto.ECS
  2. {
  3. public enum ExclusiveGroupBitmask : byte
  4. {
  5. NONE = 0,
  6. DISABLED_BIT = 0b00000001,
  7. UNUSED_BIT_2 = 0b00000010,
  8. UNUSED_BIT_3 = 0b00000100,
  9. UNUSED_BIT_4 = 0b00001000,
  10. UNUSED_BIT_5 = 0b00010000,
  11. UNUSED_BIT_6 = 0b00100000,
  12. UNUSED_BIT_7 = 0b01000000,
  13. UNUSED_BIT_8 = 0b10000000,
  14. }
  15. }