2020-12-14 16:24:52 +00:00
|
|
|
|
namespace QSB.Events
|
2020-08-10 17:24:28 +00:00
|
|
|
|
{
|
2020-12-02 21:23:01 +00:00
|
|
|
|
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 WakeUp = "WakeUp";
|
2020-12-11 12:54:19 +00:00
|
|
|
|
public static string DialogueCondition = "DialogueConditionChanged";
|
2020-08-10 17:24:28 +00:00
|
|
|
|
|
2020-12-02 21:23:01 +00:00
|
|
|
|
public static string QSBPlayerDeath = "QSBPlayerDeath";
|
|
|
|
|
public static string QSBPlayerJoin = "QSBPlayerJoin";
|
|
|
|
|
public static string QSBPlayerReady = "QSBPlayerReady";
|
|
|
|
|
public static string QSBSectorChange = "QSBSectorChange";
|
|
|
|
|
public static string QSBPlayerStatesRequest = "QSBPlayerStatesRequest";
|
|
|
|
|
public static string QSBServerTime = "QSBServerTime";
|
|
|
|
|
public static string QSBStartLift = "QSBStartLift";
|
|
|
|
|
public static string QSBGeyserState = "QSBGeyserState";
|
|
|
|
|
public static string QSBCrouch = "QSBAnimTrigger";
|
|
|
|
|
public static string QSBOrbSlot = "QSBOrbSlot";
|
|
|
|
|
public static string QSBOrbUser = "QSBOrbUser";
|
|
|
|
|
public static string QSBConversation = "QSBConversation";
|
|
|
|
|
public static string QSBConversationStartEnd = "QSBConversationStartEnd";
|
|
|
|
|
public static string QSBChangeAnimType = "QSBPlayInstrument";
|
|
|
|
|
public static string QSBServerSendPlayerStates = "QSBServerSendPlayerStates";
|
2020-12-19 10:56:25 +00:00
|
|
|
|
public static string QSBRevealFact = "QSBRevealFact";
|
2020-12-02 21:23:01 +00:00
|
|
|
|
}
|
2020-12-03 08:28:05 +00:00
|
|
|
|
}
|