Skip to content

Instantly share code, notes, and snippets.

@cangevine
Last active August 29, 2015 13:56
Show Gist options
  • Save cangevine/9106929 to your computer and use it in GitHub Desktop.
Save cangevine/9106929 to your computer and use it in GitHub Desktop.
Racer
interface Racer {
boolean crossedFinishLine();
void tick();
void setTrack(String[] t);
int getTrackLength();
int getPositionOnTrack();
int getMaxSpeed();
int getMaxHandling();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment