- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Changes
Jump to navigation
Jump to search
Line 75:
Line 75:
+
Line 199:
Line 200:
− +
no edit summary
function BaseTable:create_header()
function BaseTable:create_header()
self._header = self._header_template
self._header = self._header_template
self._header_bottom = self._header_template_bottom or self._header_template
end
end
function BaseTable:finish_rows()
function BaseTable:finish_rows()
table.insert(self._rows, self._row_starter)
table.insert(self._rows, self._row_starter)
table.insert(self._rows, self._header)
table.insert(self._rows, self._header_bottom)
table.insert(self._rows, self._table_end)
table.insert(self._rows, self._table_end)
end
end