16 lines
429 B
C#
16 lines
429 B
C#
|
|
namespace Content.Client.Mech;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// This is used for visualizing mech constructions
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed class MechAssemblyVisualsComponent : Component
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The prefix that is followed by the number which
|
|||
|
|
/// denotes the current state to use.
|
|||
|
|
/// </summary>
|
|||
|
|
[DataField("statePrefix", required: true)]
|
|||
|
|
public string StatePrefix = string.Empty;
|
|||
|
|
}
|