class RPG::Event
Attributes
id[RW]
name[RW]
pages[RW]
x[RW]
y[RW]
Public Class Methods
new(x, y)
click to toggle source
# File lib/rgss3/rpg.rb, line 208 def initialize(x, y) @id = 0 @name = '' @x = x @y = y @pages = [RPG::Event::Page.new] end