Sha256: dd75435ca590f8eddc78522e68d9c3adfb7b1276131bcb38fb49017035301a18

Contents?: true

Size: 566 Bytes

Versions: 2

Compression:

Stored size: 566 Bytes

Contents

# frozen_string_literal: true

module DspBlueprintParser
  # data class for parsed area
  class Area
    # @return [Integer]
    attr_accessor :index

    # @return [Integer]
    attr_accessor :parent_index

    # @return [Integer]
    attr_accessor :tropic_anchor

    # @return [Integer]
    attr_accessor :area_segments

    # @return [Integer]
    attr_accessor :anchor_local_offset_x

    # @return [Integer]
    attr_accessor :anchor_local_offset_y

    # @return [Integer]
    attr_accessor :width

    # @return [Integer]
    attr_accessor :height
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dsp_blueprint_parser-0.1.3 lib/dsp_blueprint_parser/area.rb
dsp_blueprint_parser-0.1.2 lib/dsp_blueprint_parser/area.rb