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.
636 637 638 639 |
# File 'lib/R3EXS/RGSS3.rb', line 636 def initialize(code = 0, parameters = []) @code = code @parameters = parameters end |
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
641 642 643 |
# File 'lib/R3EXS/RGSS3.rb', line 641 def code @code end |
#parameters ⇒ Object
Returns the value of attribute parameters.
642 643 644 |
# File 'lib/R3EXS/RGSS3.rb', line 642 def parameters @parameters end |