Add panic bunker UI and automatic panic bunker (#20954)
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Administration.Events;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class PanicBunkerStatus
|
||||
{
|
||||
public bool Enabled;
|
||||
public bool DisableWithAdmins;
|
||||
public bool EnableWithoutAdmins;
|
||||
public bool CountDeadminnedAdmins;
|
||||
public bool ShowReason;
|
||||
public int MinAccountAgeHours;
|
||||
public int MinOverallHours;
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class PanicBunkerChangedEvent : EntityEventArgs
|
||||
{
|
||||
public PanicBunkerStatus Status;
|
||||
|
||||
public PanicBunkerChangedEvent(PanicBunkerStatus status)
|
||||
{
|
||||
Status = status;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user