Class: RPG::MoveCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/rgss3/rpg.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code = 0, parameters = []) ⇒ MoveCommand

Returns a new instance of MoveCommand.



328
329
330
331
# File 'lib/rgss3/rpg.rb', line 328

def initialize(code = 0, parameters = [])
  @code = code
  @parameters = parameters
end

Instance Attribute Details

#codeObject

Returns the value of attribute code.



332
333
334
# File 'lib/rgss3/rpg.rb', line 332

def code
  @code
end

#parametersObject

Returns the value of attribute parameters.



333
334
335
# File 'lib/rgss3/rpg.rb', line 333

def parameters
  @parameters
end