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.

29 lines
890 B

8 years ago
8 years ago
8 years ago
8 years ago
  1. using System.Text;
  2. using Hack.Tools.TraceLog;
  3. namespace Hack.Xenosaga.Common
  4. {
  5. public class Variables
  6. {
  7. public struct stArgs
  8. {
  9. public string option;
  10. public string filename;
  11. public Encoding encode;
  12. public bool regroup;
  13. }
  14. public static TraceLog traceLog;
  15. public const string dirUnpack = "01-UNPACK/";
  16. public const string dirExtract = "02-EXTRACT/";
  17. public const string dirInsert = "03-INSERT/";
  18. public const string dirPack = "04-PACK/";
  19. public const string dirFinal = "05-FINAL/";
  20. public const string tblCard = "TABLES/card_ANSI.tbl";
  21. public const string tblEvtBox = "TABLES/evt_box_ANSI.tbl";
  22. public const string tblEvtVideo = "TABLES/evt_video_ANSI.tbl";
  23. public const string tblEvtItem = "TABLES/evtitem_ANSI.tbl";
  24. }
  25. }