RPG::MoveRoute
Data class for the move route (movement route).
Superclass
Referrer
Attributes
repeat
Truth value of the [Repeat Action] option.
skippable
Truth value of the [Ignore if Can't Move] option.
list
Program contents. An RPG::MoveCommand array.
Definition
module RPG
  class MoveRoute
    def initialize
      @repeat = true
      @skippable = false
      @list = [RPG::MoveCommand.new]
    end
    attr_accessor :repeat
    attr_accessor :skippable
    attr_accessor :list
  end
endLast updated