mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:50:54 +01:00
19 lines
311 B
C#
19 lines
311 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Security
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum DeployableBarrierVisuals : byte
|
|
{
|
|
State
|
|
}
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum DeployableBarrierState : byte
|
|
{
|
|
Idle,
|
|
Deployed
|
|
}
|
|
}
|