using System.Collections.Generic; namespace OpenVIII { public sealed partial class Magazine : SP2 { #region Constructors /// /// Contains Magazines and parts of tutorials; some tutorial images are in Icons. /// /// TODO test this. public Magazine() { } #endregion Constructors #region Methods public static Magazine Load() => Load(); protected override void DefaultValues() { base.DefaultValues(); Props = new List() { new TexProps{Filename = "mag{0:00}.tex",Count =20 }, new TexProps{Filename="magita.TEX",Count =1}, }; TextureStartOffset = 0; IndexFilename = ""; EntriesPerTexture = -1; } /// /// not used in magzine there is no sp2 file. /// /// protected override void InitEntries(ArchiveWorker aw = null) { } #endregion Methods } }