ace/Source/ACE.DatLoader/Entity/StarterArea.cs
Mag-nus c29389843d
few small things (#627)
* ACE.DatLoader renames PositionNew to Position

* Remove comment

* ACE.DatLoader DatDatabase I prefer this type instead.
2018-02-08 08:00:13 -06:00

18 lines
422 B
C#

using System.Collections.Generic;
using System.IO;
namespace ACE.DatLoader.Entity
{
public class StarterArea : IUnpackable
{
public string Name { get; private set; }
public List<Position> Locations { get; } = new List<Position>();
public void Unpack(BinaryReader reader)
{
Name = reader.ReadString();
Locations.UnpackSmartArray(reader);
}
}
}