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