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