public
Description: voice commanded servant
Homepage:
Clone URL: git://github.com/floere/james.git
Click here to lend your support to: james and make a donation at www.pledgie.com !
Florian Hanke (author)
Mon Mar 31 11:29:51 -0700 2008
james / dialogue.rb
100644 8 lines (6 sloc) 0.143 kb
1
2
3
4
5
6
7
8
class Dialogue
  
  # choose one reply randomly from the given replies
  def random_reply(replies)
    replies[rand(replies.size)]
  end
  
end