7 lines
454 B
C#
7 lines
454 B
C#
#nullable enable
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace SideScrollerGame.Hero.Rules;
|
|
|
|
public sealed record HeroMissionSnapshot(string ActiveDifficultyId, HeroLifeState LifeState, int Level, int Points, int ShieldCharges, int RetryCount, IReadOnlyList<string?> PrimaryWeaponSlots, int SelectedPrimaryWeaponSlotIndex, string CurrentSecondaryWeaponId, string CurrentSpecialWeaponId, int SpecialAmmo, string SquadronMateTypeId, int SquadronMateCount); |