Add TestModeBtn and Quit button

This commit is contained in:
2024-01-25 18:26:06 +01:00
parent eb4f59d419
commit f3b69a8117
8 changed files with 185 additions and 10 deletions

View File

@@ -11,9 +11,13 @@ public:
this->mainLayout = new QVBoxLayout(this);
this->mainLayout->setAlignment(Qt::AlignCenter);
this->pts = new QLabel("Points : 0", this);
this->pts->setStyleSheet("font-size: 96px; color: black;");
this->x = new QLabel("X : 0", this);
this->x->setStyleSheet("font-size: 32px; color: black;");
this->y = new QLabel("Y : 0", this);
this->y->setStyleSheet("font-size: 32px; color: black;");
this->time = new QLabel("Time : 0m0s", this);
this->time->setStyleSheet("font-size: 32px; color: black;");
this->mainLayout->addWidget(pts);