class Azuma::Designator

Public Class Methods

new(talkers) click to toggle source
# File lib/azuma/designator.rb, line 3
def initialize(talkers)
  @talkers = talkers.shuffle
end

Public Instance Methods

next_talker() click to toggle source
# File lib/azuma/designator.rb, line 7
def next_talker
  @talkers.pop
end