mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
395 B
C#
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();
|
|
}
|
|
}
|
|
}
|