Source code for bot_api.game_type

[docs] class GameType: """ Predefined game types. These game types are described here: https://robocode-dev.github.io/tank-royale/articles/game_types.html """ CLASSIC = "classic" """Classic (standard) battle with a minimum of 2 bots battling each other on an arena size of 800 x 600 units.""" MELEE = "melee" """Melee battle with a minimum of 10 bots battling each other on an arena of 1000 x 1000 units.""" ONE_VS_ONE = "1v1" """One versus one (1-vs-1) battle between exactly two bots alone on an arena of 1000 x 1000 units."""