mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
19 lines
325 B
C#
19 lines
325 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Storage.Components
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum SharedBagOpenVisuals : byte
|
|
{
|
|
BagState,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SharedBagState : byte
|
|
{
|
|
Open,
|
|
Closed,
|
|
}
|
|
}
|