Class: RPG::MoveCommand

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of MoveCommand.



3
4
5
6
# File 'lib/rpg/move_command.rb', line 3

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

Instance Attribute Details

#codeObject

Returns the value of attribute code.



7
8
9
# File 'lib/rpg/move_command.rb', line 7

def code
  @code
end

#parametersObject

Returns the value of attribute parameters.



8
9
10
# File 'lib/rpg/move_command.rb', line 8

def parameters
  @parameters
end