mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
30 lines
736 B
C#
30 lines
736 B
C#
namespace ACE.Server.Entity
|
|
{
|
|
/// <summary>
|
|
/// Used to replace default Textures / not required
|
|
/// </summary>
|
|
public class ModelTexture
|
|
{
|
|
/// <summary>
|
|
/// Index of model to replace texture.
|
|
/// </summary>
|
|
public byte Index { get; }
|
|
|
|
/// <summary>
|
|
/// Texture portal.dat entry
|
|
/// </summary>
|
|
public uint OldTexture { get; }
|
|
|
|
/// <summary>
|
|
/// Texture portal.dat entry
|
|
/// </summary>
|
|
public uint NewTexture { get; }
|
|
|
|
public ModelTexture(byte index, uint oldtexture, uint newtexture)
|
|
{
|
|
Index = index;
|
|
OldTexture = oldtexture;
|
|
NewTexture = newtexture;
|
|
}
|
|
}
|
|
}
|