Class: Table
- Inherits:
-
Object
- Object
- Table
- Defined in:
- lib/eidolon/rgssx/table.rb
Overview
RGSSx
This class is present and consistent across all RGSS versions.
Table
The multidimensional array class. Each element is an integer of 2 signed bytes ranging from -32,768 to 32,767.
Instance Attribute Summary collapse
-
#xsize ⇒ Object
readonly
Size of the Table’s X dimension.
-
#ysize ⇒ Object
readonly
Size of the Table’s Y dimension.
-
#zsize ⇒ Object
readonly
Size of the Table’s Z dimension.
Instance Attribute Details
#xsize ⇒ Object (readonly)
Size of the Table’s X dimension.
9 10 11 |
# File 'lib/eidolon/rgssx/table.rb', line 9 def xsize @xsize end |
#ysize ⇒ Object (readonly)
Size of the Table’s Y dimension.
12 13 14 |
# File 'lib/eidolon/rgssx/table.rb', line 12 def ysize @ysize end |
#zsize ⇒ Object (readonly)
Size of the Table’s Z dimension.
15 16 17 |
# File 'lib/eidolon/rgssx/table.rb', line 15 def zsize @zsize end |