using polymorphism now but still have to decide on a better pattern

This commit is contained in:
2026-02-20 21:53:09 +00:00
parent 87c5d75040
commit 36cdd67f23
11 changed files with 67 additions and 9 deletions
+4 -1
View File
@@ -76,8 +76,11 @@ void UITable::setup() {
#ifdef DEBUG
this->tableData[r * COLUMNS + c]->drawBox();
this->tableData[r * COLUMNS + c]->Update("---");
this->tableData[r * COLUMNS + c]->Update("---", false);
#endif
}
}
}
void UITable::Update(const char* data, bool forceRedraw) {}
void UITable::Redraw() {}