Files
tbd-station-14/Content.Shared/Storage/Components/SharedBagOpenVisuals.cs
Leon Friedrich 7a843fa830 fix cigar case visuals (#5570)
* fix cigar

* newline
2021-11-26 23:43:19 -07:00

19 lines
325 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Storage.Components
{
[Serializable, NetSerializable]
public enum SharedBagOpenVisuals : byte
{
BagState,
}
[Serializable, NetSerializable]
public enum SharedBagState : byte
{
Open,
Closed,
}
}