summaryrefslogtreecommitdiff
path: root/src/listeners/buyingstoremodelistener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-15 00:14:39 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-15 00:14:39 +0300
commitc2f007b58743491dc9250f09137ad847043b840d (patch)
tree472ce728623054a7b58141c16118e53a2837759b /src/listeners/buyingstoremodelistener.h
parentc7f54151ba693e7f57378b77cc567d5aa26cf4cf (diff)
downloadplus-c2f007b58743491dc9250f09137ad847043b840d.tar.gz
plus-c2f007b58743491dc9250f09137ad847043b840d.tar.bz2
plus-c2f007b58743491dc9250f09137ad847043b840d.tar.xz
plus-c2f007b58743491dc9250f09137ad847043b840d.zip
eathena: impliment packet SMSG_BUYINGSTORE_OWN_ITEMS.
Diffstat (limited to 'src/listeners/buyingstoremodelistener.h')
-rw-r--r--src/listeners/buyingstoremodelistener.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/listeners/buyingstoremodelistener.h b/src/listeners/buyingstoremodelistener.h
new file mode 100644
index 000000000..36d402d59
--- /dev/null
+++ b/src/listeners/buyingstoremodelistener.h
@@ -0,0 +1,38 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2014-2015 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/>.
+ */
+
+#ifndef LISTENERS_BUYINGSTOREMODELISTENER_H
+#define LISTENERS_BUYINGSTOREMODELISTENER_H
+
+#include "listeners/baselistener.hpp"
+
+#include "localconsts.h"
+
+class BuyingStoreModeListener notfinal
+{
+ public:
+ virtual void buyingStoreEnabled(const bool b) = 0;
+
+ static void distributeEvent(const bool b);
+
+ defineListenerHeader(BuyingStoreModeListener)
+};
+
+#endif // LISTENERS_BUYINGSTOREMODELISTENER_H