diff options
Diffstat (limited to 'src/party.h')
-rw-r--r-- | src/party.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/party.h b/src/party.h index 0a19ae1d..d73b4a0f 100644 --- a/src/party.h +++ b/src/party.h @@ -1,8 +1,8 @@ /* - * Aethyra - * Copyright 2008 Lloyd Bryant <lloyd_bryant@netzero.net> + * The Mana World + * Copyright (C) 2008 Lloyd Bryant <lloyd_bryant@netzero.net> * - * This file is part of Aethyra. + * This file is part of The Mana World. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -34,7 +34,7 @@ class Network; class Party { public: - Party(ChatWindow *chat, Network *network); + Party(Network *network); void respond(const std::string &command, const std::string &args); void create(const std::string &party); @@ -47,10 +47,9 @@ class Party void leftResponse(const std::string &nick); void receiveChat(Being *being, const std::string &msg); - void help(const std::string &msg); + void help(const std::string &args); private: - ChatWindow *mChat; std::string mPartyName; Network *mNetwork; bool mInParty; @@ -73,4 +72,6 @@ class Party InviteListener mInviteListener; }; +extern Party *playerParty; + #endif |