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

using System.Text;
namespace Hack.Xenosaga.Common
{
public class Variables
{
public struct stArgs
{
public string option;
public string filename;
public Encoding encode;
public bool regroup;
}
public const string dirUnpack = "01-UNPACK/";
public const string dirExtract = "02-EXTRACT/";
public const string dirInsert = "03-INSERT/";
public const string dirPack = "04-PACK/";
public const string dirFinal = "05-FINAL/";
public const string tblCard = "TABLES/card_ANSI.tbl";
public const string tblEvt = "TABLES/evt_ANSI.tbl";
}
}