lib/gamefic/scanner/fuzzy_nesting.rb



# frozen_string_literal: true


module Gamefic
  module Scanner
    # Fuzzy scanning for entities inside of other entities, e.g., `soc in draw`

    # would match `sock in drawer`.

    #

    class FuzzyNesting < Nesting
      def subprocessor
        Fuzzy
      end
    end
  end
end