source: src/test/java/agents/nastyagent/ThrowInChoose.java@ 53

Last change on this file since 53 was 1, checked in by Wouter Pasman, 6 years ago

Initial import : Genius 9.0.0

File size: 267 bytes
Line 
1package agents.nastyagent;
2
3import java.util.List;
4
5import genius.core.actions.Action;
6
7public class ThrowInChoose extends NastyAgent {
8
9 @Override
10 public Action chooseAction(List<Class<? extends Action>> possibleActions) {
11 throw new RuntimeException("bla");
12 }
13}
Note: See TracBrowser for help on using the repository browser.