| 123456789101112131415161718192021222324 |
- namespace FF8
- {
- internal partial class Faces : SP2
- {
- #region Constructors
- /// <summary>
- /// Face images used in menus / save / load screens.
- /// </summary>
- public Faces()
- {
- TextureBigFilename = new string[] { "Face_b{0:00}.TEX", "Gf_big{0:00}.TEX" };
- TextureBigSplit = new uint[] { 2, 2 };
- TextureFilename = new string[] { "face{0:0}.tex" };
- TextureCount = new int[] { 2 };
- TextureStartOffset = 1;
- IndexFilename = "face.sp2";
- EntriesPerTexture = 16;
- Init();
- }
- #endregion Constructors
- }
- }
|