Magazine.cs 852 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace FF8
  7. {
  8. partial class Magazine : SP2
  9. {
  10. /// <summary>
  11. /// Contains Magazines and parts of tutorials; some tutorial images are in Icons.
  12. /// </summary>
  13. /// TODO test this.
  14. public Magazine()
  15. {
  16. TextureFilename = new string[] { "mag{0:00}.tex", "magita.TEX" };
  17. TextureCount = new int[] { 20, 1 };
  18. TextureStartOffset = 0;
  19. IndexFilename = "";
  20. EntriesPerTexture = -1;
  21. Init();
  22. }
  23. /// <summary>
  24. /// not used in magzine there is no sp2 file.
  25. /// </summary>
  26. /// <param name="aw"></param>
  27. protected override void InitEntries(ArchiveWorker aw = null) { }
  28. }
  29. }