Files
tbd-station-14/Content.Shared/GameObjects/Components/Doors/SharedDoorComponent.cs
metalgearsloth 72eb1fdc1c Add door welding (#1951)
* Add door welding

Surprised this wasn't in already.

* smug's feedback

Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
2020-08-30 11:16:29 +02:00

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,
}
}