Files
crystall-punk-14/Content.Shared/GameObjects/Components/SharedBagOpenVisuals.cs

20 lines
349 B
C#
Raw Normal View History

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