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.

24 lines
675 B

8 years ago
8 years ago
8 years ago
  1. using System.Text;
  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 Encoding encode;
  11. public bool regroup;
  12. }
  13. public const string dirUnpack = "01-UNPACK/";
  14. public const string dirExtract = "02-EXTRACT/";
  15. public const string dirInsert = "03-INSERT/";
  16. public const string dirPack = "04-PACK/";
  17. public const string dirFinal = "05-FINAL/";
  18. public const string tblCard = "TABLES/card_ANSI.tbl";
  19. public const string tblEvt = "TABLES/evt_ANSI.tbl";
  20. }
  21. }