Guest User

https://github.com/CogDisastr/DungeonToddler/blob/master/Dun

a guest
Apr 24th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. if move == 'W' or move == 'w':
  2.             moveCharacterUp(MAP)
  3.         elif move == 'A' or move == 'a':
  4.             moveCharacterLeft(MAP)
  5.         elif move == 'S' or move == 's':
  6.             moveCharacterDown(MAP)
  7.         elif move == 'D' or move == 'd':
  8.             moveCharacterRight(MAP)
Advertisement
Add Comment
Please, Sign In to add comment