ace/Source/ACE.Server/Entity/Model.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

25 lines
622 B
C#

namespace ACE.Server.Entity
{
/// <summary>
/// Used to replace model objects with other model objects.
/// For example, you can swap out characters Head 0x10 with another Random Model.
/// </summary>
public class Model
{
/// <summary>
/// Index of Model being replace
/// </summary>
public byte Index { get; }
/// <summary>
/// Model portal.dat entry
/// </summary>
public uint ModelID { get; }
public Model(byte index, uint modelID)
{
Index = index;
ModelID = modelID;
}
}
}