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.



1071
1072
1073
1074
1075
# File 'lib/R3EXS/RGSS3.rb', line 1071

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.



1077
1078
1079
# File 'lib/R3EXS/RGSS3.rb', line 1077

def condition
  @condition
end

#listObject

Returns the value of attribute list.



1079
1080
1081
# File 'lib/R3EXS/RGSS3.rb', line 1079

def list
  @list
end

#spanObject

Returns the value of attribute span.



1078
1079
1080
# File 'lib/R3EXS/RGSS3.rb', line 1078

def span
  @span
end