ace/Source/ACE.Server/Entity/ModelTexture.cs
Mag-nus 7e256a7fb3
ACE prj to ACE.Server rename (#628)
* ACE.DatLoader renames PositionNew to Position

* Remove comment

* ACE.DatLoader DatDatabase I prefer this type instead.

* Unused references removed

* namespace fixes

* ACE prj to ACE.Server rename

* Appveyor fix I think

* Changelog

* appveyor fixes

* Update AccountTests.cs

* Update ConstructedStatementTests.cs

* Update WeenieSearchTests.cs

* ACE.Tests -> ACE.Server.Tests

* Appvyeor
2018-02-08 17:05:02 -06:00

30 lines
739 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;
}
}
}