bashaus/gbtiles

View on GitHub
lib/gbtiles/gbr/tile_set/object.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GBTiles
  module GBR
    module TileSet
      class Object

        attr_accessor :object_id
        attr_accessor :object_type

        def initialize object_type
          @object_type = object_type
        end
      end
    end
  end
end