# File lib/ttfunk/resource_file.rb, line 5
    def self.open(path)
      ::File.open(path, "rb") do |io|
        file = new(io)
        yield file
      end
    end