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