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.

15 lines
167 B

  1. #pragma once
  2. #include <tchar.h>
  3. #include <string>
  4. namespace SevenZip
  5. {
  6. #ifdef _UNICODE
  7. typedef std::wstring TString;
  8. #else
  9. typedef std::string TString;
  10. #endif
  11. }