File: layer.rb

package info (click to toggle)
ruby-oj 3.16.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,208 kB
  • sloc: ansic: 20,028; ruby: 11,642; sh: 70; makefile: 17
file content (11 lines) | stat: -rw-r--r-- 155 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
module Sample
  class Layer < Group
    attr_accessor :name

    def initialize(name)
      super()
      @name = name
    end

  end # Layer
end # Sample