Files
tbd-station-14/Content.Shared/GameObjects/Components/ExtinguisherCabinet.cs
Moses 6a4b856961 Extinguisher cabinet (#1976)
* 1779 Add extinguisher cabinet base item, rsi, and class based on potted plant

* Pretty much the rest of the owl

* Allow construction

* no more deconstruction

* pr fixes
2020-09-02 01:41:35 +02:00

13 lines
241 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components
{
[Serializable, NetSerializable]
public enum ExtinguisherCabinetVisuals
{
IsOpen,
ContainsExtinguisher
}
}