A modded EditSaber for making beat saber maps.
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.

31 lines
410 B

  1. #pragma once
  2. #include "Enum.h"
  3. namespace SevenZip
  4. {
  5. struct CompressionFormat
  6. {
  7. enum _Enum
  8. {
  9. Unknown,
  10. SevenZip,
  11. Zip,
  12. GZip,
  13. BZip2,
  14. Rar,
  15. Tar,
  16. Iso,
  17. Cab,
  18. Lzma,
  19. Lzma86
  20. };
  21. typedef intl::EnumerationDefinitionNoStrings _Definition;
  22. typedef intl::EnumerationValue< _Enum, _Definition, Unknown > _Value;
  23. };
  24. typedef CompressionFormat::_Value CompressionFormatEnum;
  25. }