mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 06:35:45 +00:00
25 lines
633 B
C#
25 lines
633 B
C#
namespace QSB.Events
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|