Files
crystall-punk-14/Content.Shared/Storage/SharedBagOpenVisuals.cs

19 lines
313 B
C#
Raw Normal View History

using System;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Storage
{
[Serializable, NetSerializable]
public enum SharedBagOpenVisuals : byte
{
BagState,
}
2021-06-09 22:19:39 +02:00
[Serializable, NetSerializable]
public enum SharedBagState : byte
{
Open,
Close,
}
}