Skip to content

Instantly share code, notes, and snippets.

@asterite
Created August 7, 2014 19:13
Show Gist options
  • Select an option

  • Save asterite/c83af1fbfe7813bfedd8 to your computer and use it in GitHub Desktop.

Select an option

Save asterite/c83af1fbfe7813bfedd8 to your computer and use it in GitHub Desktop.
def self.read_keypress
case C.getchar
when 'a'
:left
when 's'
:down
when 'd'
:right
when 'w'
:up
when 'q'
:q
else
:unknown
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment