mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Odyssey Update 13 journal changes
This commit is contained in:
parent
428b44cc2b
commit
796819617b
@ -24,5 +24,9 @@ namespace Observatory.Framework.Files.Journal
|
|||||||
/// List of signals found.
|
/// List of signals found.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ImmutableList<Signal> Signals { get; init; }
|
public ImmutableList<Signal> Signals { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// List of genuses present.
|
||||||
|
/// </summary>
|
||||||
|
public ImmutableList<GenusType> Genuses { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,7 @@ namespace Observatory.Framework.Files.Journal
|
|||||||
}
|
}
|
||||||
public string DestinationSystem { get; init; }
|
public string DestinationSystem { get; init; }
|
||||||
public string DestinationStation { get; init; }
|
public string DestinationStation { get; init; }
|
||||||
|
public string DestinationSettlement { get; init; }
|
||||||
public string NewDestinationSystem { get; init; }
|
public string NewDestinationSystem { get; init; }
|
||||||
public string NewDestinationStation { get; init; }
|
public string NewDestinationStation { get; init; }
|
||||||
public int PassengerCount { get; init; }
|
public int PassengerCount { get; init; }
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
namespace Observatory.Framework.Files.Journal
|
||||||
|
{
|
||||||
|
public class NavRouteClear : JournalBase
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
17
ObservatoryFramework/Files/ParameterTypes/Genus.cs
Normal file
17
ObservatoryFramework/Files/ParameterTypes/Genus.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
namespace Observatory.Framework.Files.ParameterTypes
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Genus object used within SAASignalsFound event
|
||||||
|
/// </summary>
|
||||||
|
public class GenusType
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Internal (non-localised) name of genus, e.g.: "$Codex_Ent_Stratum_Genus_Name"
|
||||||
|
/// </summary>
|
||||||
|
public string Genus { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of genus localised for player locale, e.g.: "Stratum"
|
||||||
|
/// </summary>
|
||||||
|
public string Genus_Localised { get; init; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user