| 1234567891011121314151617 |
- using Robust.Shared.Serialization;
- namespace Content.Shared.Storage.Components
- {
- [Serializable, NetSerializable]
- public enum SharedBagOpenVisuals : byte
- {
- BagState,
- }
- [Serializable, NetSerializable]
- public enum SharedBagState : byte
- {
- Open,
- Closed,
- }
- }
|