Class: Tilemap
- Inherits:
-
Object
- Object
- Tilemap
- Defined in:
- lib/tilemap.rb
Instance Attribute Summary (collapse)
-
- (Object) bitmaps
Returns the value of attribute bitmaps.
-
- (Object) flags
Returns the value of attribute flags.
-
- (Object) flash_data
Returns the value of attribute flash_data.
-
- (Object) map_data
Returns the value of attribute map_data.
-
- (Object) ox
Returns the value of attribute ox.
-
- (Object) oy
Returns the value of attribute oy.
-
- (Object) viewport
Returns the value of attribute viewport.
-
- (Object) visible
Returns the value of attribute visible.
Instance Method Summary (collapse)
- - (Object) dispose
- - (Boolean) disposed?
-
- (Tilemap) initialize(viewport = nil)
constructor
A new instance of Tilemap.
- - (Object) update
Constructor Details
- (Tilemap) initialize(viewport = nil)
Returns a new instance of Tilemap
3 4 5 |
# File 'lib/tilemap.rb', line 3 def initialize( = nil) fail NotImplementedError end |
Instance Attribute Details
- (Object) bitmaps
Returns the value of attribute bitmaps
19 20 21 |
# File 'lib/tilemap.rb', line 19 def bitmaps @bitmaps end |
- (Object) flags
Returns the value of attribute flags
25 26 27 |
# File 'lib/tilemap.rb', line 25 def flags @flags end |
- (Object) flash_data
Returns the value of attribute flash_data
23 24 25 |
# File 'lib/tilemap.rb', line 23 def flash_data @flash_data end |
- (Object) map_data
Returns the value of attribute map_data
21 22 23 |
# File 'lib/tilemap.rb', line 21 def map_data @map_data end |
- (Object) ox
Returns the value of attribute ox
31 32 33 |
# File 'lib/tilemap.rb', line 31 def ox @ox end |
- (Object) oy
Returns the value of attribute oy
33 34 35 |
# File 'lib/tilemap.rb', line 33 def oy @oy end |
- (Object) viewport
Returns the value of attribute viewport
27 28 29 |
# File 'lib/tilemap.rb', line 27 def @viewport end |
- (Object) visible
Returns the value of attribute visible
29 30 31 |
# File 'lib/tilemap.rb', line 29 def visible @visible end |
Instance Method Details
- (Object) dispose
7 8 9 |
# File 'lib/tilemap.rb', line 7 def dispose fail NotImplementedError end |
- (Boolean) disposed?
11 12 13 |
# File 'lib/tilemap.rb', line 11 def disposed? fail NotImplementedError end |
- (Object) update
15 16 17 |
# File 'lib/tilemap.rb', line 15 def update fail NotImplementedError end |