ConstructionGhostComponent.cs 383 B

12345678910111213
  1. using Content.Shared.Construction.Prototypes;
  2. using Robust.Shared.GameObjects;
  3. using Robust.Shared.ViewVariables;
  4. namespace Content.Client.Construction
  5. {
  6. [RegisterComponent]
  7. public sealed partial class ConstructionGhostComponent : Component
  8. {
  9. public int GhostId { get; set; }
  10. [ViewVariables] public ConstructionPrototype? Prototype { get; set; }
  11. }
  12. }