summaryrefslogtreecommitdiff
path: root/server/connection.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-11-25 03:01:43 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-11-25 03:01:43 +0100
commit4282a9d069b3bedc8888a4e6202f2b066233d4ec (patch)
tree8e0646804a7b33883be5867833e7b02004ddca1c /server/connection.h
parentd5aae396856ee801eb2e2420b786fda2f13cf391 (diff)
Rename Player to Client, to better reflect what it represents.
A Player should be specific to a game, while a Client may participate in several.
Diffstat (limited to 'server/connection.h')
-rw-r--r--server/connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/connection.h b/server/connection.h
index 0f16022..248817b 100644
--- a/server/connection.h
+++ b/server/connection.h
@@ -10,7 +10,7 @@
class Connection : public ConnectionBase, public boost::enable_shared_from_this<Connection> {
private:
friend class TCPServer;
- friend class Player;
+ friend class Client;
boost::asio::ip::tcp::socket socket;