Files
OldThink/Content.Shared/Storage/Components/SharedBagOpenVisuals.cs

19 lines
325 B
C#
Raw Normal View History

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