* 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
13 lines
241 B
C#
13 lines
241 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ExtinguisherCabinetVisuals
|
|
{
|
|
IsOpen,
|
|
ContainsExtinguisher
|
|
}
|
|
}
|