Class: RPG::Animation::Frame

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFrame

Returns a new instance of Frame.



844
845
846
847
# File 'lib/rgss3/rpg.rb', line 844

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

Instance Attribute Details

#cell_dataObject

Returns the value of attribute cell_data.



849
850
851
# File 'lib/rgss3/rpg.rb', line 849

def cell_data
  @cell_data
end

#cell_maxObject

Returns the value of attribute cell_max.



848
849
850
# File 'lib/rgss3/rpg.rb', line 848

def cell_max
  @cell_max
end