Files
4a02a34637d20cb7f2128445794b1ea4e39b10ab
18 lines
490 B
C#
18 lines
490 B
C#
using Robust.Shared.GameStates;
|
|||
using Robust.Shared.Prototypes;
|
|||
|
|||
namespace Content.Shared.Objectives.Components;
|
|||
|
|||
/// <summary>
|
|||
/// Allows an object to become the target of a steal objective
|
|||
/// </summary>
|
|||
[RegisterComponent, NetworkedComponent]
|
|||
public sealed partial class StealTargetComponent : Component
|
|||
{
|
|||
/// <summary>
|
|||
/// The theft group to which this item belongs.
|
|||
/// </summary>
|
|||
[DataField(required: true)]
|
|||
public ProtoId<StealTargetGroupPrototype> StealGroup;
|
|||
}
|