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