Class: Wardite::TableSection

Inherits:
Section
  • Object
show all
Defined in:
lib/wardite/load.rb

Instance Attribute Summary collapse

Attributes inherited from Section

#code, #name, #size

Instance Method Summary collapse

Constructor Details

#initializeTableSection

Returns a new instance of TableSection.



46
47
48
49
50
51
52
# File 'lib/wardite/load.rb', line 46

def initialize
  self.name = "Table"
  self.code = 0x4

  @table_types = []
  @table_limits = []
end

Instance Attribute Details

#table_limitsObject

: Array[[Integer, Integer?]]



43
44
45
# File 'lib/wardite/load.rb', line 43

def table_limits
  @table_limits
end

#table_typesObject

: Array



41
42
43
# File 'lib/wardite/load.rb', line 41

def table_types
  @table_types
end