RPG::MoveRoute

The data class for the Move route.

Superclass

Referrer

Attributes

repeat

The truth value of the [Repeat Action] option.

skippable

The truth value of the [Skip If Cannot Move] option.

wait

The truth value of the [Wait for Completion] option.

list

Program contents. An RPG::MoveCommand array.

Definition

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