mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* ACE.DatLoader: XpTable updated * ACE.DatLoader physics and environment using new unpack pattern
16 lines
360 B
C#
16 lines
360 B
C#
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class PortalPoly : IUnpackable
|
|
{
|
|
public short PortalIndex { get; set; }
|
|
public short PolygonId { get; set; }
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
PortalIndex = reader.ReadInt16();
|
|
PolygonId = reader.ReadInt16();
|
|
}
|
|
}
|
|
}
|