Class: Table

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#xsizeObject (readonly)

Size of the Table’s X dimension.



9
10
11
# File 'lib/eidolon/rgssx/table.rb', line 9

def xsize
  @xsize
end

#ysizeObject (readonly)

Size of the Table’s Y dimension.



12
13
14
# File 'lib/eidolon/rgssx/table.rb', line 12

def ysize
  @ysize
end

#zsizeObject (readonly)

Size of the Table’s Z dimension.



15
16
17
# File 'lib/eidolon/rgssx/table.rb', line 15

def zsize
  @zsize
end