mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-03 09:03:42 -04:00
Initial Commit
This commit is contained in:
@ -1,23 +1,22 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Startup;
|
||||
|
||||
public class Loadout : JournalBase
|
||||
{
|
||||
public class Loadout : JournalBase
|
||||
{
|
||||
public string Ship { get; init; }
|
||||
public ulong ShipID { get; init; }
|
||||
public string ShipName { get; init; }
|
||||
public string ShipIdent { get; init; }
|
||||
public int CargoCapacity { get; init; }
|
||||
public ulong HullValue { get; init; }
|
||||
public ulong ModulesValue { get; init; }
|
||||
public double HullHealth { get; init; }
|
||||
public double UnladenMass { get; init; }
|
||||
public FuelCapacity FuelCapacity { get; init; }
|
||||
public double MaxJumpRange { get; init; }
|
||||
public ulong Rebuy { get; init; }
|
||||
public bool Hot { get; init; }
|
||||
public ImmutableList<Modules> Modules { get; init; }
|
||||
}
|
||||
}
|
||||
public string Ship { get; init; }
|
||||
public ulong ShipID { get; init; }
|
||||
public string ShipName { get; init; }
|
||||
public string ShipIdent { get; init; }
|
||||
public int CargoCapacity { get; init; }
|
||||
public ulong HullValue { get; init; }
|
||||
public ulong ModulesValue { get; init; }
|
||||
public double HullHealth { get; init; }
|
||||
public double UnladenMass { get; init; }
|
||||
public FuelCapacity FuelCapacity { get; init; }
|
||||
public double MaxJumpRange { get; init; }
|
||||
public ulong Rebuy { get; init; }
|
||||
public bool Hot { get; init; }
|
||||
public ImmutableList<Modules> Modules { get; init; }
|
||||
}
|
Reference in New Issue
Block a user