Class: Clases::MensajeVars

Inherits:
Mensaje
  • Object
show all
Defined in:
lib/imposition/clases.rb

Instance Attribute Summary

Attributes inherited from Mensaje

#id, #level, #mensaje

Instance Method Summary collapse

Methods inherited from Mensaje

#==, #to_s

Constructor Details

#initialize(*args) ⇒ MensajeVars

Returns a new instance of MensajeVars.



256
257
258
259
260
261
262
263
# File 'lib/imposition/clases.rb', line 256

def initialize(*args)
  if args.size==0 then
   super(8)#clasico
  elsif args.size==2 then
    @id=8
    super(args[0],args[1])
  end
end