Class: Wardite::ElemSection
Instance Attribute Summary collapse
-
#element_indices ⇒ Object
: Array[Array].
-
#table_indices ⇒ Object
: Array.
-
#table_offsets ⇒ Object
: Array.
Attributes inherited from Section
Instance Method Summary collapse
-
#initialize ⇒ ElemSection
constructor
A new instance of ElemSection.
Constructor Details
#initialize ⇒ ElemSection
Returns a new instance of ElemSection.
114 115 116 117 118 119 120 121 |
# File 'lib/wardite/load.rb', line 114 def initialize self.name = "Elem" self.code = 0x9 @table_indices = [] @table_offsets = [] @element_indices = [] end |
Instance Attribute Details
#element_indices ⇒ Object
: Array[Array]
111 112 113 |
# File 'lib/wardite/load.rb', line 111 def element_indices @element_indices end |
#table_indices ⇒ Object
: Array
107 108 109 |
# File 'lib/wardite/load.rb', line 107 def table_indices @table_indices end |
#table_offsets ⇒ Object
: Array
109 110 111 |
# File 'lib/wardite/load.rb', line 109 def table_offsets @table_offsets end |