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.

24 lines
307 B

  1. #pragma once
  2. namespace SevenZip
  3. {
  4. namespace intl
  5. {
  6. struct FileInfo
  7. {
  8. TString FileName;
  9. FILETIME LastWriteTime;
  10. FILETIME CreationTime;
  11. FILETIME LastAccessTime;
  12. ULONGLONG Size;
  13. UINT Attributes;
  14. bool IsDirectory;
  15. };
  16. struct FilePathInfo : public FileInfo
  17. {
  18. TString FilePath;
  19. };
  20. }
  21. }