Sha256: c94d689423e01e1b7bba3b086d6ef2684af04a5e51639e99876902d6caad2542
Contents?: true
Size: 641 Bytes
Versions: 11
Compression:
Stored size: 641 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 81 # - Name: Weight # - Type: R # - Min/Max: 1/10 # - Description: Numeric value of weight class E81 < Eddy::Models::Element::R # @param val [Float] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "81" @name = "Weight" @description = "Numeric value of weight" super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems