using System.Collections.Generic; using System.IO; namespace ACE.DatLoader.Entity { public class SkyDesc : IUnpackable { public double TickSize { get; private set; } public double LightTickSize { get; private set; } public List DayGroups { get; } = new List(); public void Unpack(BinaryReader reader) { TickSize = reader.ReadDouble(); LightTickSize = reader.ReadDouble(); reader.AlignBoundary(); DayGroups.Unpack(reader); } } }