Skip to content

Instantly share code, notes, and snippets.

@t3h2mas
Created October 21, 2014 00:11
Show Gist options
  • Save t3h2mas/3cc3490353939031cf87 to your computer and use it in GitHub Desktop.
Save t3h2mas/3cc3490353939031cf87 to your computer and use it in GitHub Desktop.
int *get_move()
{
const int moves[4][2] = {
{ 1, 0}, // North
{ 0, 1}, // East
{-1, 0}, // South
{ 0, -1} // West
};
int move;
srand((unsigned) time(NULL));
move = rand() % 4;
return moves[move];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment