tutorials/ruby/rubywarrior/tim-beginner/player.rb

6 lines
66 B
Ruby

class Player
def play_turn(warrior)
warrior.walk!
end
end