Created
January 16, 2013 04:45
-
-
Save McFunkypants/4544699 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
// returns boolean value (world cell is available and open) | |
function canWalkHere(x, y) | |
{ | |
return ((world[x] != null) && | |
(world[x][y] != null) && | |
(world[x][y] <= maxWalkableTileNum)); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment