chore: reformat

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2025-04-29 10:34:42 +03:00
parent 57d3d4815b
commit 5c8481a118
20 changed files with 134 additions and 119 deletions

View File

@ -5,18 +5,17 @@
#include <tasks/Task.h>
class ServerPingTask : public Task {
Q_OBJECT
public:
public:
explicit ServerPingTask(QString domain, int port) : Task(), m_domain(domain), m_port(port) {}
~ServerPingTask() override = default;
int m_outputOnlinePlayers = -1;
private:
private:
QString m_domain;
int m_port;
protected:
protected:
virtual void executeTask() override;
};