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.



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

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

  @table_types = []
  @table_limits = []
end

Instance Attribute Details

#table_limitsObject

: Array[[Integer, Integer?]]



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

def table_limits
  @table_limits
end

#table_typesObject

: Array



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

def table_types
  @table_types
end