MechAssemblyVisualsComponent.cs 437 B

123456789101112131415
  1. namespace Content.Client.Mech;
  2. /// <summary>
  3. /// This is used for visualizing mech constructions
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class MechAssemblyVisualsComponent : Component
  7. {
  8. /// <summary>
  9. /// The prefix that is followed by the number which
  10. /// denotes the current state to use.
  11. /// </summary>
  12. [DataField("statePrefix", required: true)]
  13. public string StatePrefix = string.Empty;
  14. }