Files
tbd-station-14/Content.Shared/Storage/SharedBagOpenVisuals.cs
2021-07-16 17:37:09 -07:00

19 lines
313 B
C#

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