mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 13:23:05 +00:00
29 lines
768 B
C#
29 lines
768 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 PlayerSectorEvent();
|
|
new PlayerJoinEvent();
|
|
new PlayerLeaveEvent();
|
|
new PlayerDeathEvent();
|
|
new PlayerStatesRequestEvent();
|
|
|
|
Ready = true;
|
|
}
|
|
}
|
|
}
|