ace/Source/ACE.DatLoader/Entity/RoadAlphaMap.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

16 lines
373 B
C#

using System.IO;
namespace ACE.DatLoader.Entity
{
public class RoadAlphaMap : IUnpackable
{
public uint RCode { get; private set; }
public uint RoadTexGID { get; private set; }
public void Unpack(BinaryReader reader)
{
RCode = reader.ReadUInt32();
RoadTexGID = reader.ReadUInt32();
}
}
}