mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
24 lines
578 B
C#
24 lines
578 B
C#
namespace ACE.Server.Entity
|
|
{
|
|
/// <summary>
|
|
/// Used to replace default Palette colors / not required
|
|
/// </summary>
|
|
public class ModelPalette
|
|
{
|
|
/// <summary>
|
|
/// Palette portal.dat entry minus 0x04000000
|
|
/// </summary>
|
|
public uint PaletteId { get; }
|
|
|
|
public ushort Offset { get; }
|
|
|
|
public ushort Length { get; }
|
|
|
|
public ModelPalette(uint paletteId, ushort offset, ushort length)
|
|
{
|
|
PaletteId = paletteId;
|
|
Offset = offset;
|
|
Length = length;
|
|
}
|
|
}
|
|
}
|