add new entries
the content is not yet known, but we do know the event name
This commit is contained in:
parent
32dbde2c82
commit
693d49be14
@ -40,6 +40,10 @@ public class Entry {
|
||||
{ Events.MultiSellExplorationData, typeof(MultiSellExplorationDataEntry) },
|
||||
{ Events.Music, typeof(MusicEntry) },
|
||||
{ Events.Powerplay, typeof(PowerplayEntry) },
|
||||
{ Events.PowerplayCollect, typeof(PowerplayCollectEntry) },
|
||||
{ Events.PowerplayDeliver, typeof(PowerplayDeliverEntry) },
|
||||
{ Events.PowerplayMerits, typeof(PowerplayMeritsEntry) },
|
||||
{ Events.PowerplayRank, typeof(PowerplayRankEntry) },
|
||||
{ Events.ReceiveText, typeof(ReceiveTextEntry) },
|
||||
{ Events.RedeemVoucher, typeof(RedeemVoucherEntry) },
|
||||
{ Events.SearchAndRescue, typeof(SearchAndRescueEntry) },
|
||||
|
@ -30,6 +30,10 @@ public class Events {
|
||||
public static readonly string MultiSellExplorationData = "MultiSellExplorationData";
|
||||
public static readonly string Music = "Music";
|
||||
public static readonly string Powerplay = "Powerplay";
|
||||
public static readonly string PowerplayCollect = "PowerplayCollect";
|
||||
public static readonly string PowerplayDeliver = "PowerplayDeliver";
|
||||
public static readonly string PowerplayMerits = "PowerplayMerits";
|
||||
public static readonly string PowerplayRank = "PowerplayRank";
|
||||
public static readonly string ReceiveText = "ReceiveText";
|
||||
public static readonly string RedeemVoucher = "RedeemVoucher";
|
||||
public static readonly string SearchAndRescue = "SearchAndRescue";
|
||||
|
7
EDPlayerJournal/Entries/PowerplayCollectEntry.cs
Normal file
7
EDPlayerJournal/Entries/PowerplayCollectEntry.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace EDPlayerJournal.Entries;
|
||||
|
||||
public class PowerplayCollectEntry : Entry {
|
||||
protected override void Initialise() {
|
||||
// TODO
|
||||
}
|
||||
}
|
7
EDPlayerJournal/Entries/PowerplayDeliverEntry.cs
Normal file
7
EDPlayerJournal/Entries/PowerplayDeliverEntry.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace EDPlayerJournal.Entries;
|
||||
|
||||
public class PowerplayDeliverEntry : Entry {
|
||||
protected override void Initialise() {
|
||||
// TODO
|
||||
}
|
||||
}
|
7
EDPlayerJournal/Entries/PowerplayMeritsEntry.cs
Normal file
7
EDPlayerJournal/Entries/PowerplayMeritsEntry.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace EDPlayerJournal.Entries;
|
||||
|
||||
public class PowerplayMeritsEntry : Entry {
|
||||
protected override void Initialise() {
|
||||
// TODO
|
||||
}
|
||||
}
|
7
EDPlayerJournal/Entries/PowerplayRankEntry.cs
Normal file
7
EDPlayerJournal/Entries/PowerplayRankEntry.cs
Normal file
@ -0,0 +1,7 @@
|
||||
namespace EDPlayerJournal.Entries;
|
||||
|
||||
public class PowerplayRankEntry : Entry {
|
||||
protected override void Initialise() {
|
||||
// TODO
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user