Class: RPG::Troop::Page

Inherits:
Object
  • Object
show all
Defined in:
lib/R3EXS/RGSS3.rb

Defined Under Namespace

Classes: Condition

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePage

Returns a new instance of Page.



1093
1094
1095
1096
1097
# File 'lib/R3EXS/RGSS3.rb', line 1093

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.



1099
1100
1101
# File 'lib/R3EXS/RGSS3.rb', line 1099

def condition
  @condition
end

#listObject

Returns the value of attribute list.



1101
1102
1103
# File 'lib/R3EXS/RGSS3.rb', line 1101

def list
  @list
end

#spanObject

Returns the value of attribute span.



1100
1101
1102
# File 'lib/R3EXS/RGSS3.rb', line 1100

def span
  @span
end