// // 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; /// /// Represents type of raid in act4. /// public enum Act4Raid { /// /// Fire element raid with the boss Morcos. /// Morcos, /// /// Shadow element raid with the boss Hatus. /// Hatus, /// /// Water element raid with the boss Calvina. /// Calvina, /// /// Light element raid with the boss Berios. /// Berios }