4
0
mirror of https://github.com/QuasarApp/Hanoi-Towers.git synced 2025-05-13 09:59:34 +00:00
2021-03-07 20:38:38 +03:00

10 lines
203 B
C++

#include "worldclient.h"
WorldClient::WorldClient(const QString &worldName): World(worldName) {
}
void WorldClient::bestUserChanged(const QString &bestUser) {
emit sigBestUserChanged(bestUser);
}