2020-08-10 14:48:40 +01:00

28 lines
727 B
C#

namespace QSB.Events
{
/// <summary>
/// Creates instances of all of the events QSB uses.
/// </summary>
public static class EventList
{
public static bool Ready { get; private set; }
public static void Init()
{
new PlayerReadyEvent();
new PlayerSuitEvent();
new PlayerFlashlightEvent();
new PlayerSignalscopeEvent();
new PlayerTranslatorEvent();
new PlayerProbeLauncherEvent();
new PlayerProbeEvent();
//new PlayerSectorChange();
new PlayerJoinEvent();
new PlayerLeaveEvent();
new PlayerDeathEvent();
Ready = true;
}
}
}