Change all "ID" parameter types to ulong
This commit is contained in:
parent
cffaec92ec
commit
ab1d6d41dc
58 changed files with 66 additions and 66 deletions
|
|
@ -5,7 +5,7 @@
|
|||
public ulong SystemAddress { get; init; }
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public long MarketID { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
public float Latitude { get; init; }
|
||||
public float Longitude { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
{
|
||||
public class CrewLaunchFighter : CrewMemberJoins
|
||||
{
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,6 @@
|
|||
{
|
||||
public class DockFighter : JournalBase
|
||||
{
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@
|
|||
public class FighterRebuilt : JournalBase
|
||||
{
|
||||
public string Loadout { get; init; }
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
public class LaunchSRV : JournalBase
|
||||
{
|
||||
public string Loadout { get; init; }
|
||||
public int ID { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
public bool PlayerControlled { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
public class NpcCrewPaidWage : JournalBase
|
||||
{
|
||||
public int NpcCrewId { get; init; }
|
||||
public ulong NpcCrewId { get; init; }
|
||||
public string NpcCrewName { get; init; }
|
||||
public int Amount { get; init; }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ namespace Observatory.Framework.Files.Journal
|
|||
{
|
||||
public class NpcCrewRank : JournalBase
|
||||
{
|
||||
public int NpcCrewId { get; init; }
|
||||
public ulong NpcCrewId { get; init; }
|
||||
public string NpcCrewName { get; init; }
|
||||
public RankCombat RankCombat { get; init; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue