namespace OpenVIII
{
public abstract partial class SP2
{
#region Classes
///
/// For big textures.
///
public class BigTexProps : TexProps
{
///
/// leave null unless big version has a different custom palette than normal.
///
//public Color[] Colors;
///
/// Filename; To match more than one number use {0:00} or {00:00} for ones with leading zeros.
///
//public string Filename;
#region Fields
///
/// Big versions of textures take the file and split it into multiple. How many splits
/// per BigFilename. Value to be interval of 2. As these files are all 2 cols wide. And
/// must be >= 2
/// if split is <= 1 then the file is not split up into parts. They are just larger versions.
///
public uint Split = 1;
#endregion Fields
//public BigTexProps(string filename, uint split, Color[] colors = null)
//{
// Filename = filename;
// Split = split;
// Colors = colors;
//}
}
#endregion Classes
}
}