9 lines
218 B
C#
9 lines
218 B
C#
|
|
using Content.Shared.Roles;
|
||
|
|
|
||
|
|
namespace Content.Server.Roles;
|
||
|
|
|
||
|
|
public sealed class NukeopsRole : AntagonistRole
|
||
|
|
{
|
||
|
|
public NukeopsRole(Mind.Mind mind, AntagPrototype antagPrototype) : base(mind, antagPrototype) { }
|
||
|
|
}
|