Skip to content

Instantly share code, notes, and snippets.

@sohnryang
Created February 26, 2017 03:18
Show Gist options
  • Save sohnryang/3516015678107dc08772637fb56688b9 to your computer and use it in GitHub Desktop.
Save sohnryang/3516015678107dc08772637fb56688b9 to your computer and use it in GitHub Desktop.
Rubywarrior level 2
class Player
def play_turn(warrior)
if warrior.feel.empty?
warrior.walk!
else
warrior.attack!
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment