ace/Source/ACE.DatLoader/Entity/Season.cs
Mag-nus e5fb929f39
ACE.DatLoader RegionDesc updated to the new format w/bug fixes (#607)
* ACE.DatLoader RegionDesc updated to the new format w/bug fixes

* Missing file
2018-01-28 13:41:46 -06:00

17 lines
395 B
C#

using System.IO;
namespace ACE.DatLoader.Entity
{
public class Season : IUnpackable
{
public uint StartDate { get; private set; }
public string Name { get; private set; }
public void Unpack(BinaryReader reader)
{
StartDate = reader.ReadUInt32();
Name = reader.ReadPString();
reader.AlignBoundary();
}
}
}