* Add door welding Surprised this wasn't in already. * smug's feedback Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
27 lines
429 B
C#
27 lines
429 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Doors
|
|
{
|
|
[NetSerializable]
|
|
[Serializable]
|
|
public enum DoorVisuals
|
|
{
|
|
VisualState,
|
|
Powered,
|
|
BoltLights
|
|
}
|
|
|
|
[NetSerializable]
|
|
[Serializable]
|
|
public enum DoorVisualState
|
|
{
|
|
Closed,
|
|
Opening,
|
|
Open,
|
|
Closing,
|
|
Deny,
|
|
Welded,
|
|
}
|
|
}
|