mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +00:00
18 lines
447 B
C#
18 lines
447 B
C#
namespace QSB.Events
|
|
{
|
|
public static class EventList
|
|
{
|
|
public static void Init()
|
|
{
|
|
new PlayerFlashlightEvent();
|
|
new PlayerSignalscopeEvent();
|
|
new PlayerTranslatorEvent();
|
|
new PlayerProbeLauncherEvent();
|
|
//new PlayerProbeEvent();
|
|
//new PlayerSectorChange();
|
|
new PlayerJoinEvent();
|
|
//new PlayerLeaveEvent();
|
|
}
|
|
}
|
|
}
|