Faces.cs 664 B

123456789101112131415161718192021222324
  1. namespace FF8
  2. {
  3. internal partial class Faces : SP2
  4. {
  5. #region Constructors
  6. /// <summary>
  7. /// Face images used in menus / save / load screens.
  8. /// </summary>
  9. public Faces()
  10. {
  11. TextureBigFilename = new string[] { "Face_b{0:00}.TEX", "Gf_big{0:00}.TEX" };
  12. TextureBigSplit = new uint[] { 2, 2 };
  13. TextureFilename = new string[] { "face{0:0}.tex" };
  14. TextureCount = new int[] { 2 };
  15. TextureStartOffset = 1;
  16. IndexFilename = "face.sp2";
  17. EntriesPerTexture = 16;
  18. Init();
  19. }
  20. #endregion Constructors
  21. }
  22. }