Guest User

Untitled

a guest
May 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. package Bot;
  2.  
  3. import com.sun.org.apache.xpath.internal.operations.String;
  4.  
  5. import Maze.*;
  6. import Value.*;
  7.  
  8. public class Bot1 extends Bot
  9. {
  10. public Bot1(BotFamily family)
  11. {
  12. super(family);
  13. }
  14.  
  15. public void enterNodeActions() throws MapError, UserError;
  16. {
  17.  
  18. }
  19.  
  20. public String chooseNextNode() throws MapError, UserError;
  21. {
  22.  
  23. }
  24.  
  25. public void leaveNodeActions() throws MapError, UserError;
  26. {
  27.  
  28. }
  29.  
  30. public void enterMazeActions() throws MapError, UserError;
  31. {
  32.  
  33. }
  34.  
  35. public void leaveMazeActions() throws MapError, UserError;
  36. {
  37.  
  38. }
  39.  
  40. public void deathbedActions() throws MapError, UserError;
  41. {
  42.  
  43. }
  44. }
Add Comment
Please, Sign In to add comment