Tool dedicated to isohacking for Xenosaga on Playstation 2
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.

23 lines
561 B

8 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Hack.Xenosaga.Common
  7. {
  8. public class Variables
  9. {
  10. public struct stArgs
  11. {
  12. public string option;
  13. public string filename;
  14. public bool regroup;
  15. }
  16. public const string dirUnpack = "01-UNPACK/";
  17. public const string dirExtract = "02-EXTRACT/";
  18. public const string dirInsert = "03-INSERT/";
  19. public const string dirPack = "04-PACK/";
  20. }
  21. }