Class: RPG::MoveCommand
- Inherits:
-
Object
- Object
- RPG::MoveCommand
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#parameters ⇒ Object
Returns the value of attribute parameters.
Instance Method Summary collapse
-
#initialize(code = 0, parameters = []) ⇒ MoveCommand
constructor
A new instance of MoveCommand.
Constructor Details
#initialize(code = 0, parameters = []) ⇒ MoveCommand
Returns a new instance of MoveCommand.
614 615 616 617 |
# File 'lib/R3EXS/RGSS3.rb', line 614 def initialize(code = 0, parameters = []) @code = code @parameters = parameters end |
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
619 620 621 |
# File 'lib/R3EXS/RGSS3.rb', line 619 def code @code end |
#parameters ⇒ Object
Returns the value of attribute parameters.
620 621 622 |
# File 'lib/R3EXS/RGSS3.rb', line 620 def parameters @parameters end |