Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created September 20, 2013 12:20
Show Gist options
  • Save pbrewczynski/6636643 to your computer and use it in GitHub Desktop.
Save pbrewczynski/6636643 to your computer and use it in GitHub Desktop.
public:
Robot () {
this(0,0, "stop", false);
}
Robot (int x, int b, String state, bool isTurnOn) {
this->x = x;
this->y = y;
this->state = state;
this->isTurnOn = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment