Sha256: cfc3cbf4fcdb153a044d58c9845b26113da700ad3ec4eb4e588a6532076ded64

Contents?: true

Size: 289 Bytes

Versions: 1

Compression:

Stored size: 289 Bytes

Contents

module FeedBo
  class Element
    
    include Drawable
  
    attr_accessor :level
    attr_accessor :block_position, :visible
  
    def initialize(position=nil)
      super()
      @block_position = false
      @visible = true
      @position = position if position
    end
  
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
feed_bo-0.0.4 lib/feed_bo/element.rb