Files
2023-01-18 17:25:32 -05:00

27 lines
649 B
C#

// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
namespace Framework.Constants
{
public enum ObjectiveStates
{
Neutral = 0,
Alliance,
Horde,
NeutralAllianceChallenge,
NeutralHordeChallenge,
AllianceHordeChallenge,
HordeAllianceChallenge
}
public enum OutdoorPvPTypes
{
HellfirePeninsula = 1,
Nagrand = 2,
TerokkarForest = 3,
Zangarmarsh = 4,
Silithus = 5,
Max = 6
}
}