1
0

StealTargetComponent.cs 490 B

1234567891011121314151617
  1. using Robust.Shared.GameStates;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Shared.Objectives.Components;
  4. /// <summary>
  5. /// Allows an object to become the target of a steal objective
  6. /// </summary>
  7. [RegisterComponent, NetworkedComponent]
  8. public sealed partial class StealTargetComponent : Component
  9. {
  10. /// <summary>
  11. /// The theft group to which this item belongs.
  12. /// </summary>
  13. [DataField(required: true)]
  14. public ProtoId<StealTargetGroupPrototype> StealGroup;
  15. }