mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 13:23:05 +00:00
24 lines
599 B
C#
24 lines
599 B
C#
namespace QSB.Events
|
|
{
|
|
public static class EventList
|
|
{
|
|
public static bool Ready { get; private set; }
|
|
|
|
public static void Init()
|
|
{
|
|
new PlayerSuitEvent();
|
|
new PlayerFlashlightEvent();
|
|
new PlayerSignalscopeEvent();
|
|
new PlayerTranslatorEvent();
|
|
new PlayerProbeLauncherEvent();
|
|
//new PlayerProbeEvent();
|
|
//new PlayerSectorChange();
|
|
new PlayerJoinEvent();
|
|
new PlayerLeaveEvent();
|
|
new PlayerDeathEvent();
|
|
|
|
Ready = true;
|
|
}
|
|
}
|
|
}
|