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.
115 116 117 118 119 120 121 122 |
# File 'lib/wardite/load.rb', line 115 def initialize self.name = "Elem" self.code = 0x9 @table_indices = [] @table_offsets = [] @element_indices = [] end |
Instance Attribute Details
#element_indices ⇒ Object
: Array[Array]
112 113 114 |
# File 'lib/wardite/load.rb', line 112 def element_indices @element_indices end |
#table_indices ⇒ Object
: Array
108 109 110 |
# File 'lib/wardite/load.rb', line 108 def table_indices @table_indices end |
#table_offsets ⇒ Object
: Array
110 111 112 |
# File 'lib/wardite/load.rb', line 110 def table_offsets @table_offsets end |