diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-24 11:30:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-24 11:30:39 +0300 |
commit | 03548e276d033939449abb9b3a94a57803a57964 (patch) | |
tree | b77dc158a946d3022a10cf6f08ee76d3cae22721 /src/net/tmwa/buyingstorehandler.cpp | |
parent | ec5a45824c26921c12a1a90dfe541c2e59421e7b (diff) | |
download | plus-03548e276d033939449abb9b3a94a57803a57964.tar.gz plus-03548e276d033939449abb9b3a94a57803a57964.tar.bz2 plus-03548e276d033939449abb9b3a94a57803a57964.tar.xz plus-03548e276d033939449abb9b3a94a57803a57964.zip |
Add empty BuyingStoreHandler.
Diffstat (limited to 'src/net/tmwa/buyingstorehandler.cpp')
-rw-r--r-- | src/net/tmwa/buyingstorehandler.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/net/tmwa/buyingstorehandler.cpp b/src/net/tmwa/buyingstorehandler.cpp new file mode 100644 index 000000000..86f5dc791 --- /dev/null +++ b/src/net/tmwa/buyingstorehandler.cpp @@ -0,0 +1,45 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus 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/>. + */ + +#include "net/tmwa/buyingstorehandler.h" + +#include "debug.h" + +extern Net::BuyingStoreHandler *buyingStoreHandler; + +namespace TmwAthena +{ + +BuyingStoreHandler::BuyingStoreHandler() : + MessageHandler() +{ + static const uint16_t _messages[] = + { + 0 + }; + handledMessages = _messages; + buyingStoreHandler = this; +} + +void BuyingStoreHandler::handleMessage(Net::MessageIn &msg A_UNUSED) +{ +} + +} // namespace TmwAthena |