2022-02-05 13:33:24 +00:00
|
|
|
using Robust.Shared.Analyzers;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Remotes
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
[Friend(typeof(DoorRemoteSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class DoorRemoteComponent : Component
|
2022-02-05 13:33:24 +00:00
|
|
|
{
|
|
|
|
|
public override string Name => "DoorRemote";
|
|
|
|
|
|
|
|
|
|
public OperatingMode Mode = OperatingMode.OpenClose;
|
|
|
|
|
|
|
|
|
|
public enum OperatingMode : byte
|
|
|
|
|
{
|
|
|
|
|
OpenClose,
|
2022-02-09 03:13:35 +00:00
|
|
|
ToggleBolts,
|
|
|
|
|
ToggleEmergencyAccess
|
2022-02-05 13:33:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|