mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:34:44 +01:00
29 lines
898 B
C#
29 lines
898 B
C#
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Sandbox
|
|
{
|
|
public abstract class SharedSandboxSystem : EntitySystem
|
|
{
|
|
[Dependency] protected readonly IPrototypeManager PrototypeManager = default!;
|
|
|
|
[Serializable, NetSerializable]
|
|
protected sealed class MsgSandboxStatus : EntityEventArgs
|
|
{
|
|
public bool SandboxAllowed { get; set; }
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
protected sealed class MsgSandboxRespawn : EntityEventArgs {}
|
|
|
|
[Serializable, NetSerializable]
|
|
protected sealed class MsgSandboxGiveAccess : EntityEventArgs {}
|
|
|
|
[Serializable, NetSerializable]
|
|
protected sealed class MsgSandboxGiveAghost : EntityEventArgs {}
|
|
|
|
[Serializable, NetSerializable]
|
|
protected sealed class MsgSandboxSuicide : EntityEventArgs {}
|
|
}
|
|
}
|