Sha256: 15403584bf2d4f28e29fb4a11b59f0b2347e4b63e10efc6d0606b8552813c7e3
Contents?: true
Size: 633 Bytes
Versions: 4
Compression:
Stored size: 633 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::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
4 entries across 4 versions & 1 rubygems