The data class for the Event command.
The event code.
The indent depth. Usually 0. The [Conditional Branch] command, among others, adds 1 with every step deeper.
An array containing the Event command's arguments. The contents vary for each command.
class RPG::EventCommand
def initialize(code = 0, indent = 0, parameters = [])
@code = code
@indent = indent
@parameters = parameters
end
attr_accessor :code
attr_accessor :indent
attr_accessor :parameters
end