/ benchmark / Dummy.java
Dummy.java
 1  import hlt.*;
 2  import java.util.ArrayList;
 3  
 4  /**
 5   * A dummy bot sends no commands
 6   */
 7  public class Dummy {
 8  
 9      public static void main(final String[] args) {
10          Game game = new Game();
11          game.ready("Dummy");
12  
13          for (;;) {
14              game.updateFrame();
15              game.endTurn(new ArrayList<>());
16          }
17      }
18  }