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.

21 lines
509 B

8 years ago
8 years ago
  1. 
  2. namespace Hack.Xenosaga.Common
  3. {
  4. public class Variables
  5. {
  6. public struct stArgs
  7. {
  8. public string option;
  9. public string filename;
  10. public bool regroup;
  11. }
  12. public const string dirUnpack = "01-UNPACK/";
  13. public const string dirExtract = "02-EXTRACT/";
  14. public const string dirInsert = "03-INSERT/";
  15. public const string dirPack = "04-PACK/";
  16. public const string tblCard = "TABLES/card_ANSI.tbl";
  17. }
  18. }