require_relative 'game' module CodebreakerParatskiy def self.run_game(name, difficulty) game = Game.new(name, difficulty) game.run game end end # game = CodebreakerParatskiy.run_game('asdf', { attempts: 5, hints: 1})