~ruther/NosSmooth

ref: 762fc34c97e8b1f6e9290426b8bc2a78122e28ba NosSmooth/Core/NosSmooth.Game/Data/Act4/Act4Status.cs -rw-r--r-- 769 bytes
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
//
//  Act4Status.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.

using NosSmooth.Packets.Enums;

namespace NosSmooth.Game.Data.Act4;

/// <summary>
/// Status of a faction in act4
/// </summary>
/// <param name="Percentage">The percentage to Mukraju.</param>
/// <param name="Mode">The current mode.</param>
/// <param name="CurrentTime">The current time of the raid.</param>
/// <param name="TotalTime">The total time the raid will be for.</param>
/// <param name="Raid">The type of the raid.</param>
public record Act4FactionStatus
(
    short Percentage,
    Act4Mode Mode,
    long? CurrentTime,
    long? TotalTime,
    Act4Raid? Raid
);
Do not follow this link