mirror of
https://github.com/QuasarApp/Hanoi-Towers.git
synced 2025-05-13 09:59:34 +00:00
10 lines
203 B
C++
10 lines
203 B
C++
#include "worldclient.h"
|
|
|
|
WorldClient::WorldClient(const QString &worldName): World(worldName) {
|
|
|
|
}
|
|
|
|
void WorldClient::bestUserChanged(const QString &bestUser) {
|
|
emit sigBestUserChanged(bestUser);
|
|
}
|