2025-06-22 15:33:36 -04:00
|
|
|
namespace ACE.Server.Entity
|
2017-03-02 07:55:00 -05:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-03-16 14:50:25 -04:00
|
|
|
/// Used to replace default Textures / not required
|
2017-03-02 07:55:00 -05:00
|
|
|
/// </summary>
|
2017-03-06 07:33:26 -05:00
|
|
|
public class ModelTexture
|
2017-03-02 07:55:00 -05:00
|
|
|
{
|
2017-03-16 14:50:25 -04:00
|
|
|
/// <summary>
|
|
|
|
|
/// Index of model to replace texture.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte Index { get; }
|
2017-03-02 07:55:00 -05:00
|
|
|
|
2017-03-16 14:50:25 -04:00
|
|
|
/// <summary>
|
2017-04-20 21:47:31 +02:00
|
|
|
/// Texture portal.dat entry
|
2017-03-16 14:50:25 -04:00
|
|
|
/// </summary>
|
2017-04-20 21:47:31 +02:00
|
|
|
public uint OldTexture { get; }
|
2017-03-16 14:50:25 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
2017-04-20 21:47:31 +02:00
|
|
|
/// Texture portal.dat entry
|
2017-03-16 14:50:25 -04:00
|
|
|
/// </summary>
|
2017-04-20 21:47:31 +02:00
|
|
|
public uint NewTexture { get; }
|
2017-03-16 14:50:25 -04:00
|
|
|
|
2017-04-20 21:47:31 +02:00
|
|
|
public ModelTexture(byte index, uint oldtexture, uint newtexture)
|
2017-03-02 07:55:00 -05:00
|
|
|
{
|
|
|
|
|
Index = index;
|
2017-03-16 14:50:25 -04:00
|
|
|
OldTexture = oldtexture;
|
|
|
|
|
NewTexture = newtexture;
|
2017-03-02 07:55:00 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|