Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 509 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 509 Bytes

Programming game

test

How the game works?

  1. Map is generated with bases randomly populated in it. There are different distances between each base.
  2. User gets assigned one of the base with certain amount of units in the base.

How to win the game?

nobody

How to write bot

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