11 lines
317 B
C#
11 lines
317 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Kitchen.Components;
|
|
|
|
/// <summary>
|
|
/// Used to mark entity that was butchered on the spike.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
[Access(typeof(SharedKitchenSpikeSystem))]
|
|
public sealed partial class KitchenSpikeVictimComponent : Component;
|