mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
9 lines
205 B
C#
9 lines
205 B
C#
namespace ACE.Entity
|
|
{
|
|
public class TextureMapChange
|
|
{
|
|
public byte PartIndex { get; set; }
|
|
public uint OldTexture { get; set; }
|
|
public uint NewTexture { get; set; }
|
|
}
|
|
}
|