fish-station/Content.Shared/Fluids/Components/EquipSprayComponent.cs
beck-thompson 68ca82cfd7
Add water flower for clowns (#41469)
* Spray!

* Add to clown loadout

* Fix the easy things

* lot nicer

* spray update..

* Fix yaml

* fixes

* changed it to warning!

* review

* review

* sku
2025-12-01 01:31:12 +00:00

16 lines
483 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Fluids.Components;
/// <summary>
/// Allows items with the spray component to be equipped and sprayable with a unique action.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class EquipSprayComponent : Component
{
/// <summary>
/// Verb locid that will come up when interacting with the sprayer. Set to null for no verb!
/// </summary>
[DataField]
public LocId? VerbLocId;
}