diff options
Diffstat (limited to 'src/netcomputer.h')
-rw-r--r-- | src/netcomputer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/netcomputer.h b/src/netcomputer.h index 8dace0d8..d1ac11f2 100644 --- a/src/netcomputer.h +++ b/src/netcomputer.h @@ -96,7 +96,7 @@ class NetComputer /** * Set the selected character associated with connection */ - void setCharacter(tmwserv::Being *ch); + void setCharacter(tmwserv::BeingPtr ch); /** * Deselect the character associated with connection @@ -107,7 +107,7 @@ class NetComputer /** * Get character associated with the connection */ - tmwserv::Being *getCharacter() { return character; } + tmwserv::BeingPtr getCharacter() { return character; } private: ConnectionHandler *handler; @@ -116,7 +116,7 @@ class NetComputer TCPsocket socket; /**< Client socket */ tmwserv::Account *account; /**< Account associated with connection */ - tmwserv::Being *character; /**< Selected character */ + tmwserv::BeingPtr character; /**< Selected character */ }; #endif |