1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#pragma once
#if defined(WITH_MULTIPLAYER) || defined(DOXYGEN_GENERATING_OUTPUT)
namespace Jazz2::Multiplayer
{
/** @brief Multiplayer game mode */
enum class MpGameMode
{
Unknown = 0, /**< Unspecified */
Battle, /**< Battle */
TeamBattle, /**< Team Battle */
Race, /**< Race */
TeamRace, /**< Team Race */
TreasureHunt, /**< Treasure Hunt */
TeamTreasureHunt, /**< Team Treasure Hunt */
CaptureTheFlag, /**< Capture The Flag */
Cooperation /**< Cooperation */
};
}
#endif
|