Delta-v/Content.Shared/DeltaV/Roles/SharedRoleSystem.DeltaV.cs

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>();
}
}