The data class for the Move route.
The truth value of the [Repeat Action] option.
The truth value of the [Skip If Cannot Move] option.
The truth value of the [Wait for Completion] option.
Program contents. An RPG::MoveCommand array.
class RPG::MoveRoute def initialize @repeat = true @skippable = false @wait = false @list = [RPG::MoveCommand.new] end attr_accessor :repeat attr_accessor :skippable attr_accessor :wait attr_accessor :list end