Shuttle docking (#5169)

Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
This commit is contained in:
metalgearsloth
2021-11-11 20:06:38 +11:00
committed by GitHub
parent 5e1e7675af
commit a360f6126e
17 changed files with 681 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ using Robust.Shared.ViewVariables;
namespace Content.Shared.Doors
{
[NetworkedComponent()]
[NetworkedComponent]
public abstract class SharedDoorComponent : Component
{
public override string Name => "Door";
@@ -177,4 +177,14 @@ namespace Content.Shared.Doors
CurTime = curTime;
}
}
public sealed class DoorOpenAttemptEvent : CancellableEntityEventArgs
{
}
public sealed class DoorCloseAttemptEvent : CancellableEntityEventArgs
{
}
}