ace/Source/ACE.Entity/TextureMapChange.cs
2018-03-06 04:40:11 -05:00

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; }
}
}