# frozen_string_literal: true module Codebreakergem class Medium < Difficulty def initialize @title = 'Medium' @attempts = 10 @hints = 1 @order = 2 end end end