Sha256: ced56055e269dff61eb98f153b8c99bc264b8f6b127c92918596122f4c7efed6
Contents?: true
Size: 244 Bytes
Versions: 2
Compression:
Stored size: 244 Bytes
Contents
require 'mittsu/lights/light' module Mittsu class AmbientLight < Light def initialize(color) super @type = 'AmbientLight' end def clone light = AmbientLight.new super(light) light end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mittsu-0.1.1 | lib/mittsu/lights/ambient_light.rb |
mittsu-0.1.0 | lib/mittsu/lights/ambient_light.rb |