Skip to content

Instantly share code, notes, and snippets.

@reinh
Created February 3, 2013 07:37
Show Gist options
  • Save reinh/4700852 to your computer and use it in GitHub Desktop.
Save reinh/4700852 to your computer and use it in GitHub Desktop.
def map
out = ''
overlay = {}
overlay.merge! player_overlay
height.times do |x|
width.times do |y|
char = overlay.fetch [x,y], '.'
out << char
end
out << "\n"
end
out.strip
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment