~ruther/NosSmooth

ref: 762fc34c97e8b1f6e9290426b8bc2a78122e28ba NosSmooth/Core/NosSmooth.Game/Data/Act4/Act4Raid.cs -rw-r--r-- 711 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
27
28
29
30
31
32
33
//
//  Act4Raid.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.Act4;

/// <summary>
/// Represents type of raid in act4.
/// </summary>
public enum Act4Raid
{
    /// <summary>
    /// Fire element raid with the boss Morcos.
    /// </summary>
    Morcos,

    /// <summary>
    /// Shadow element raid with the boss Hatus.
    /// </summary>
    Hatus,

    /// <summary>
    /// Water element raid with the boss Calvina.
    /// </summary>
    Calvina,

    /// <summary>
    /// Light element raid with the boss Berios.
    /// </summary>
    Berios
}
Do not follow this link