//
// Act4Mode.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.Packets.Enums;
///
/// The act4 mode.
///
public enum Act4Mode
{
///
/// There is nothing currently running, percentage has to reach 100 % for Mukraju to spawn.
///
None = 0,
///
/// Mukraju has been spawned and has to be killed in order to start raid.
///
Mukraju = 1,
///
/// Unknown mode.
///
Unknown = 2,
///
/// Raid is in progress.
///
Raid = 3,
}