Files
tbd-station-14/Content.Shared/Storage/Components/SharedBagOpenVisuals.cs
2022-05-13 17:59:03 +10:00

18 lines
311 B
C#

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