Files
tbd-station-14/Content.Shared/Storage/SharedBagOpenVisuals.cs
2021-06-09 22:19:39 +02:00

20 lines
330 B
C#

#nullable enable
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,
}
}