Kernel_bin.Quanity.cs 473 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace OpenVIII
  3. {
  4. public partial class Kernel_bin
  5. {
  6. [Flags]
  7. public enum Quanity : byte
  8. {
  9. //0% = 0x00,
  10. //6.25% = 0x01,
  11. //12.50% = 0x02,
  12. //25% = 0x04,
  13. //50% = 0x08,
  14. //100% = 0x10,
  15. _0f = 0x00,
  16. _0625f = 0x01,
  17. _1250f = 0x02,
  18. _25f = 0x04,
  19. _50f = 0x08,
  20. _1f = 0x10,
  21. }
  22. }
  23. }