# frozen_string_literal: true module Codebreakergem class Difficulty attr_reader :title, :order attr_accessor :attempts, :hints def initialize raise NotImplementedError end end end