15 lines
401 B
C#
15 lines
401 B
C#
using Content.Shared.DeltaV.Roles;
|
|
|
|
namespace Content.Shared.Roles;
|
|
|
|
public abstract partial class SharedRoleSystem
|
|
{
|
|
private void InitializeDeltaV()
|
|
{
|
|
SubscribeAntagEvents<ListeningPostRoleComponent>();
|
|
SubscribeAntagEvents<ParadoxAnomalyRoleComponent>();
|
|
SubscribeAntagEvents<RecruiterRoleComponent>();
|
|
SubscribeAntagEvents<SynthesisRoleComponent>();
|
|
}
|
|
}
|