2020-08-10 19:24:28 +02:00
|
|
|
|
namespace QSB.Events
|
|
|
|
|
{
|
|
|
|
|
public static class EventNames
|
|
|
|
|
{
|
|
|
|
|
public static string TurnOnFlashlight = "TurnOnFlashlight";
|
|
|
|
|
public static string TurnOffFlashlight = "TurnOffFlashlight";
|
|
|
|
|
public static string LaunchProbe = "LaunchProbe";
|
|
|
|
|
public static string RetrieveProbe = "RetrieveProbe";
|
|
|
|
|
public static string ProbeLauncherEquipped = "ProbeLauncherEquipped";
|
|
|
|
|
public static string ProbeLauncherUnequipped = "ProbeLauncherUnequipped";
|
|
|
|
|
public static string EquipSignalscope = "EquipSignalscope";
|
|
|
|
|
public static string UnequipSignalscope = "UnequipSignalscope";
|
|
|
|
|
public static string SuitUp = "SuitUp";
|
|
|
|
|
public static string RemoveSuit = "RemoveSuit";
|
|
|
|
|
public static string EquipTranslator = "EquipTranslator";
|
|
|
|
|
public static string UnequipTranslator = "UnequipTranslator";
|
|
|
|
|
public static string ExitShip = "ExitShip";
|
|
|
|
|
public static string RestartTimeLoop = "RestartTimeLoop";
|
|
|
|
|
|
|
|
|
|
public static string QSBPlayerDeath = "QSBPlayerDeath";
|
|
|
|
|
public static string QSBPlayerJoin = "QSBPlayerJoin";
|
|
|
|
|
public static string QSBPlayerLeave = "QSBPlayerLeave";
|
|
|
|
|
public static string QSBPlayerReady = "QSBPlayerReady";
|
|
|
|
|
public static string QSBSectorChange = "QSBSectorChange";
|
|
|
|
|
public static string QSBPlayerStatesRequest = "QSBPlayerStatesRequest";
|
|
|
|
|
public static string QSBServerTime = "QSBServerTime";
|
|
|
|
|
public static string QSBOnProbeAnchor = "QSBOnProbeAnchor";
|
|
|
|
|
public static string QSBOnProbeWarp = "QSBOnProbeWarp";
|
2020-08-12 21:58:29 +02:00
|
|
|
|
public static string QSBStartLift = "QSBStartLift";
|
2020-08-13 14:32:58 +01:00
|
|
|
|
public static string QSBGeyserState = "QSBGeyserState";
|
2020-08-10 19:24:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|