edjournal/Events.cs

24 lines
1.2 KiB
C#
Raw Normal View History

2021-08-25 18:24:44 +02:00
namespace EDJournal {
public class Events {
2021-08-26 11:29:11 +02:00
/**
* A mission has been completed.
*/
2021-08-25 18:24:44 +02:00
public static readonly string MissionCompleted = "MissionCompleted";
2021-08-26 11:29:11 +02:00
public static readonly string MissionAccepted = "MissionAccepted";
2021-08-27 20:05:31 +02:00
public static readonly string MissionAbandoned = "MissionAbandoned";
2021-08-25 18:24:44 +02:00
public static readonly string Docked = "Docked";
public static readonly string FSDJump = "FSDJump";
public static readonly string MultiSellExplorationData = "MultiSellExplorationData";
public static readonly string MarketSell = "MarketSell";
public static readonly string SellMicroResources = "SellMicroResources";
public static readonly string RedeemVoucher = "RedeemVoucher";
2021-08-26 11:29:11 +02:00
public static readonly string Bounty = "Bounty";
public static readonly string ShipTargeted = "ShipTargeted";
public static readonly string ShieldState = "ShieldState";
public static readonly string MissionRedirected = "MissionRedirected";
public static readonly string UnderAttack = "UnderAttack";
public static readonly string HullDamage = "HullDamage";
public static readonly string FighterDestroyed = "FighterDestroyed";
2021-08-25 18:24:44 +02:00
}
}