~ruther/NosSmooth

ref: 762fc34c97e8b1f6e9290426b8bc2a78122e28ba NosSmooth/Core/NosSmooth.Game/Data/Raids/RaidProgress.cs -rw-r--r-- 1.1 KiB
762fc34c — Rutherther Merge pull request #82 from Rutherther/feat/serialize-stackalloc 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  RaidProgress.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace NosSmooth.Game.Data.Raids;

/// <summary>
/// A progress of a started <see cref="Raid"/>.
/// </summary>
/// <remarks>
/// Lockers are relevant before <see cref="RaidState.BossFight"/>,
/// when all lockers are unlocked, the boss room is opened.
/// </remarks>
/// <param name="MonsterLockerInitial">The number of monsters to kill.</param>
/// <param name="MonsterLockerCurrent">The number of monsters already killed.</param>
/// <param name="ButtonLockerInitial">The number of levers to pull.</param>
/// <param name="ButtonLockerCurrent">The number of levers already pulled.</param>
/// <param name="CurrentLives">The current number of lives.</param>
/// <param name="InitialLives">The maximum number of lives.</param>
public record RaidProgress
(
    short MonsterLockerInitial,
    short MonsterLockerCurrent,
    short ButtonLockerInitial,
    short ButtonLockerCurrent,
    short CurrentLives,
    short InitialLives
);
Do not follow this link