Class: RPG::Animation::Frame
- Inherits:
-
Object
- Object
- RPG::Animation::Frame
- Defined in:
- lib/R3EXS/RGSS3.rb
Instance Attribute Summary collapse
-
#cell_data ⇒ Object
Returns the value of attribute cell_data.
-
#cell_max ⇒ Object
Returns the value of attribute cell_max.
Instance Method Summary collapse
-
#initialize ⇒ Frame
constructor
A new instance of Frame.
Constructor Details
#initialize ⇒ Frame
Returns a new instance of Frame.
1143 1144 1145 1146 |
# File 'lib/R3EXS/RGSS3.rb', line 1143 def initialize @cell_max = 0 @cell_data = Table.new(0, 0) end |
Instance Attribute Details
#cell_data ⇒ Object
Returns the value of attribute cell_data.
1149 1150 1151 |
# File 'lib/R3EXS/RGSS3.rb', line 1149 def cell_data @cell_data end |
#cell_max ⇒ Object
Returns the value of attribute cell_max.
1148 1149 1150 |
# File 'lib/R3EXS/RGSS3.rb', line 1148 def cell_max @cell_max end |