Class: RPG::Troop::Page

Inherits:
Object
  • Object
show all
Defined in:
lib/rgss3/rpg.rb

Defined Under Namespace

Classes: Condition

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePage

Returns a new instance of Page.



773
774
775
776
777
# File 'lib/rgss3/rpg.rb', line 773

def initialize
  @condition = RPG::Troop::Page::Condition.new
  @span = 0
  @list = [RPG::EventCommand.new]
end

Instance Attribute Details

#conditionObject

Returns the value of attribute condition.



778
779
780
# File 'lib/rgss3/rpg.rb', line 778

def condition
  @condition
end

#listObject

Returns the value of attribute list.



780
781
782
# File 'lib/rgss3/rpg.rb', line 780

def list
  @list
end

#spanObject

Returns the value of attribute span.



779
780
781
# File 'lib/rgss3/rpg.rb', line 779

def span
  @span
end