Last change
on this file since 127 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
344 bytes
|
Rev | Line | |
---|
[1] | 1 | package agents.nastyagent;
|
---|
| 2 |
|
---|
| 3 | import java.util.List;
|
---|
| 4 |
|
---|
| 5 | import genius.core.actions.Action;
|
---|
| 6 |
|
---|
| 7 | public class SleepInChoose extends NastyAgent {
|
---|
| 8 |
|
---|
| 9 | @Override
|
---|
| 10 | public Action chooseAction(List<Class<? extends Action>> possibleActions) {
|
---|
| 11 | try {
|
---|
| 12 | Thread.sleep(2000000);
|
---|
| 13 | } catch (InterruptedException e) {
|
---|
| 14 | e.printStackTrace();
|
---|
| 15 | }
|
---|
| 16 | return null;
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.