Class: RPG::Animation::Frame

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFrame

Returns a new instance of Frame.



1165
1166
1167
1168
# File 'lib/R3EXS/RGSS3.rb', line 1165

def initialize
    @cell_max  = 0
    @cell_data = Table.new(0, 0)
end

Instance Attribute Details

#cell_dataObject

Returns the value of attribute cell_data.



1171
1172
1173
# File 'lib/R3EXS/RGSS3.rb', line 1171

def cell_data
  @cell_data
end

#cell_maxObject

Returns the value of attribute cell_max.



1170
1171
1172
# File 'lib/R3EXS/RGSS3.rb', line 1170

def cell_max
  @cell_max
end