Created
February 16, 2015 10:32
-
-
Save mosser/cb8c68cd6ed48f6d6911 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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