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
This commit is contained in:
Moses
2020-09-01 18:41:35 -05:00
committed by GitHub
parent dbbe3088f8
commit 6a4b856961
13 changed files with 305 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components
{
[Serializable, NetSerializable]
public enum ExtinguisherCabinetVisuals
{
IsOpen,
ContainsExtinguisher
}
}