class Alchy::Terminal

Public Instance Methods

combine(mother, father) click to toggle source
# File lib/alchy/cli.rb, line 6
def combine(mother, father)
  game = Alchy::Game.new
  game.make_with(mother, father)
end
show() click to toggle source
# File lib/alchy/cli.rb, line 12
def show
  game = Alchy::Game.new
  game.show
end