Skip to content

Instantly share code, notes, and snippets.

@mosser
Created February 16, 2015 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mosser/cb8c68cd6ed48f6d6911 to your computer and use it in GitHub Desktop.
Save mosser/cb8c68cd6ed48f6d6911 to your computer and use it in GitHub Desktop.
package fr.unice.polytech.ogl.islxx;
import eu.ace_design.island.bot.*;
public class Explorer implements IExplorerRaid {
@Override
public void initialize(String context) {
throw new UnsupportedOperationException("IExplorerRaid::initialize is not yet implemented");
}
@Override
public String takeDecision() {
throw new UnsupportedOperationException("IExplorerRaid::takeDecision is not yet implemented");
}
@Override
public void acknowledgeResults(String results) {
throw new UnsupportedOperationException("IExplorerRaid::acknowledgeResults is not yet implemented");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment