2020-08-09 09:37:32 +02:00
|
|
|
|
namespace QSB.Events
|
2020-08-08 00:08:44 +01:00
|
|
|
|
{
|
2020-08-09 12:19:51 +01:00
|
|
|
|
public static class EventList
|
2020-08-08 00:08:44 +01:00
|
|
|
|
{
|
2020-08-09 14:26:33 +01:00
|
|
|
|
public static bool Ready { get; private set; }
|
|
|
|
|
|
2020-08-08 00:08:44 +01:00
|
|
|
|
public static void Init()
|
|
|
|
|
{
|
2020-08-09 21:58:03 +01:00
|
|
|
|
new PlayerSuitEvent();
|
2020-08-09 09:37:32 +02:00
|
|
|
|
new PlayerFlashlightEvent();
|
|
|
|
|
new PlayerSignalscopeEvent();
|
|
|
|
|
new PlayerTranslatorEvent();
|
|
|
|
|
new PlayerProbeLauncherEvent();
|
|
|
|
|
//new PlayerProbeEvent();
|
|
|
|
|
//new PlayerSectorChange();
|
|
|
|
|
new PlayerJoinEvent();
|
2020-08-09 12:38:35 +01:00
|
|
|
|
new PlayerLeaveEvent();
|
|
|
|
|
new PlayerDeathEvent();
|
2020-08-09 14:26:33 +01:00
|
|
|
|
|
|
|
|
|
Ready = true;
|
2020-08-08 00:08:44 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|