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.



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

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

  @table_types = []
  @table_limits = []
end

Instance Attribute Details

#table_limitsObject

: Array[[Integer, Integer?]]



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

def table_limits
  @table_limits
end

#table_typesObject

: Array



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

def table_types
  @table_types
end