summaryrefslogtreecommitdiff
path: root/src/account-server/accounthandler.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/account-server/accounthandler.hpp')
-rw-r--r--src/account-server/accounthandler.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/account-server/accounthandler.hpp b/src/account-server/accounthandler.hpp
index 1c0de2e4..d7058906 100644
--- a/src/account-server/accounthandler.hpp
+++ b/src/account-server/accounthandler.hpp
@@ -28,6 +28,7 @@
#include "utils/tokencollector.hpp"
class AccountClient;
+class CharacterData;
/**
* Manages the data stored in user accounts and provides a reliable interface
@@ -126,6 +127,12 @@ class AccountHandler : public ConnectionHandler
void
handleCharacterDeleteMessage(AccountClient &computer, MessageIn &msg);
+
+ /**
+ * Send guild join for each guild the player belongs to
+ */
+ void
+ handleGuildJoining(AccountClient &computer, CharacterData *character);
};
extern AccountHandler * accountHandler;