class RPG::MoveRoute

Attributes

list[RW]
repeat[RW]
skippable[RW]
wait[RW]

Public Class Methods

new() click to toggle source
# File lib/rgss3/rpg.rb, line 316
def initialize
  @repeat = true
  @skippable = false
  @wait = false
  @list = [RPG::MoveCommand.new]
end