Files
zfxaction26_1/godot/scripts/hero/rules/HeroMissionSnapshot.cs
2026-04-21 22:54:14 +02:00

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);