Added games installer and now its amazing

This commit is contained in:
Jon ESA
2026-04-01 19:44:03 +01:00
parent 0146bcb6f2
commit f0c231e935
4 changed files with 148 additions and 80 deletions

View File

@@ -27,6 +27,9 @@ static QWidget *makeGamesTab(WebSocketController *ctrl, QWidget *parent)
{
auto *panel = new GamesPanel(parent);
ctrl->setGamesPanel(panel);
// Route GAM add commands back through the controller
QObject::connect(panel, &GamesPanel::commandRequested,
ctrl, &WebSocketController::sendCommand);
return panel;
}