2020-08-09 07:37:32 +00:00
|
|
|
|
namespace QSB.Events
|
2020-08-07 23:08:44 +00:00
|
|
|
|
{
|
2020-08-09 11:19:51 +00:00
|
|
|
|
public static class EventList
|
2020-08-07 23:08:44 +00:00
|
|
|
|
{
|
2020-08-09 13:26:33 +00:00
|
|
|
|
public static bool Ready { get; private set; }
|
|
|
|
|
|
2020-08-07 23:08:44 +00:00
|
|
|
|
public static void Init()
|
|
|
|
|
{
|
2020-08-10 10:45:24 +00:00
|
|
|
|
new PlayerReadyEvent();
|
2020-08-09 20:58:03 +00:00
|
|
|
|
new PlayerSuitEvent();
|
2020-08-09 07:37:32 +00:00
|
|
|
|
new PlayerFlashlightEvent();
|
|
|
|
|
new PlayerSignalscopeEvent();
|
|
|
|
|
new PlayerTranslatorEvent();
|
|
|
|
|
new PlayerProbeLauncherEvent();
|
2020-08-10 13:40:06 +00:00
|
|
|
|
new PlayerProbeEvent();
|
2020-08-09 07:37:32 +00:00
|
|
|
|
//new PlayerSectorChange();
|
|
|
|
|
new PlayerJoinEvent();
|
2020-08-09 11:38:35 +00:00
|
|
|
|
new PlayerLeaveEvent();
|
|
|
|
|
new PlayerDeathEvent();
|
2020-08-09 13:26:33 +00:00
|
|
|
|
|
|
|
|
|
Ready = true;
|
2020-08-07 23:08:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|