Add barebone nuke (#5242)

Co-authored-by: Alexander Evgrashin <evgrashin.adl@gmail.com>
This commit is contained in:
Alex Evgrashin
2021-11-11 04:29:11 +03:00
committed by GitHub
parent f7968cf865
commit b936ee6ad8
29 changed files with 1170 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
using Robust.Shared.GameObjects;
namespace Content.Server.Nuke
{
/// <summary>
/// Paper with a written nuclear code in it.
/// Can be used in mapping or admins spawn.
/// </summary>
[RegisterComponent]
public class NukeCodePaperComponent : Component
{
public override string Name => "NukeCodePaper";
}
}