ace/Source/ACE.Server/Entity/Model.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

25 lines
619 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;
}
}
}