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

- (MoveCommand) initialize(code = 0, parameters = [])

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

- (Object) code

Returns the value of attribute code



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

def code
  @code
end

- (Object) parameters

Returns the value of attribute parameters



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

def parameters
  @parameters
end