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