mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
* Moved safety into FireExtinguisherComponent. * Fix errant find and replace * Address reviews Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
18 lines
332 B
C#
18 lines
332 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Fluids
|
|
{
|
|
public class SharedSprayComponent : Component
|
|
{
|
|
public override string Name => "Spray";
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SprayVisuals : byte
|
|
{
|
|
Safety
|
|
}
|
|
}
|