test
- Map is generated with bases randomly populated in it. There are different distances between each base.
- User gets assigned one of the base with certain amount of units in the base.
nobody
To write bot - Player interface has to be implemented:
interface Player {
fun executeActions(map: Map): List<PlayerAction>
fun getId(): String
fun getName(): String
}
bot test