Magazine.cs 892 B

123456789101112131415161718192021222324252627282930313233
  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. Props = new List<TexProps>()
  17. {
  18. new TexProps("mag{0:00}.tex",20),
  19. new TexProps("magita.TEX",1),
  20. };
  21. TextureStartOffset = 0;
  22. IndexFilename = "";
  23. EntriesPerTexture = -1;
  24. Init();
  25. }
  26. /// <summary>
  27. /// not used in magzine there is no sp2 file.
  28. /// </summary>
  29. /// <param name="aw"></param>
  30. protected override void InitEntries(ArchiveWorker aw = null) { }
  31. }
  32. }