mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
16 lines
364 B
C#
16 lines
364 B
C#
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class TerrainAlphaMap : IUnpackable
|
|
{
|
|
public uint TCode { get; private set; }
|
|
public uint TexGID { get; private set; }
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
TCode = reader.ReadUInt32();
|
|
TexGID = reader.ReadUInt32();
|
|
}
|
|
}
|
|
}
|