Faces.cs 644 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace FF8
  3. {
  4. public partial class Faces : SP2
  5. {
  6. #region Constructors
  7. /// <summary>
  8. /// Face images used in menus / save / load screens.
  9. /// </summary>
  10. public Faces()
  11. {
  12. Props = new List<TexProps>()
  13. {
  14. new TexProps("face{0:0}.tex",2,new BigTexProps("Face_b{0:00}.TEX",2),new BigTexProps("Gf_big{0:00}.TEX",2)),
  15. };
  16. TextureStartOffset = 1;
  17. IndexFilename = "face.sp2";
  18. EntriesPerTexture = 16;
  19. Init();
  20. }
  21. #endregion Constructors
  22. }
  23. }