diff options
Diffstat (limited to 'src/net/ea/partyhandler.h')
-rw-r--r-- | src/net/ea/partyhandler.h | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/src/net/ea/partyhandler.h b/src/net/ea/partyhandler.h deleted file mode 100644 index 09f05bb3..00000000 --- a/src/net/ea/partyhandler.h +++ /dev/null @@ -1,76 +0,0 @@ -/* - * The Mana Client - * Copyright (C) 2008 Lloyd Bryant <lloyd_bryant@netzero.net> - * - * This file is part of The Mana Client. - * - * 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 - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef NET_EA_PARTYHANDLER_H -#define NET_EA_PARTYHANDLER_H - -#include "net/net.h" -#include "net/partyhandler.h" - -#include "net/ea/messagehandler.h" - -#include "party.h" - -namespace EAthena { - -class PartyHandler : public MessageHandler, public Net::PartyHandler -{ - public: - PartyHandler(); - - ~PartyHandler(); - - void handleMessage(Net::MessageIn &msg); - - void create(const std::string &name = ""); - - void join(int partyId); - - void invite(Player *player); - - void invite(const std::string &name); - - void inviteResponse(const std::string &inviter, bool accept); - - void leave(); - - void kick(Player *player); - - void kick(const std::string &name); - - void chat(const std::string &text); - - void requestPartyMembers(); - - PartyShare getShareExperience() { return mShareExp; } - - void setShareExperience(PartyShare share); - - PartyShare getShareItems() { return mShareItems; } - - void setShareItems(PartyShare share); - - private: - PartyShare mShareExp, mShareItems; -}; - -} // namespace EAthena - -#endif // NET_EA_PARTYHANDLER_H |