mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* ACE.DatLoader renames PositionNew to Position * Remove comment * ACE.DatLoader DatDatabase I prefer this type instead.
18 lines
422 B
C#
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);
|
|
}
|
|
}
|
|
}
|