Sha256: 05f2a7d705959e3b6b50a54b522fe4be208b36f5598cc2e197cf3c039c075e50
Contents?: true
Size: 688 Bytes
Versions: 4
Compression:
Stored size: 688 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 649 # - Name: Multiplier # - Type: R # - Min/Max: 1/10 # - Description: Value to be used as a multiplier to obtain a new value class E649 < Eddy::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "649" @name = "Multiplier" @description = "Value to be used as a multiplier to obtain a new value" super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems