class RPG::MapInfo

Attributes

expanded[RW]
name[RW]
order[RW]
parent_id[RW]
scroll_x[RW]
scroll_y[RW]

Public Class Methods

new() click to toggle source
# File lib/rgss3/rpg.rb, line 190
def initialize
  @name = ''
  @parent_id = 0
  @order = 0
  @expanded = false
  @scroll_x = 0
  @scroll_y = 0
end