summaryrefslogtreecommitdiff
path: root/src/listeners/vendingmodelistener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-01 23:48:15 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-02 22:48:03 +0300
commit6dc1f5e0b68cf390f7938329b50a9b28bd187862 (patch)
tree29e30e48cc03d95aeff278f6842f3a15de8f4106 /src/listeners/vendingmodelistener.h
parentc8c51d7550adf9c952a4be54398df7e7a6f341a8 (diff)
downloadplus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.gz
plus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.bz2
plus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.xz
plus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.zip
Set correct vending status to local player.
Allow buy from vending shop.
Diffstat (limited to 'src/listeners/vendingmodelistener.h')
-rw-r--r--src/listeners/vendingmodelistener.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/listeners/vendingmodelistener.h b/src/listeners/vendingmodelistener.h
new file mode 100644
index 000000000..2330c3d8d
--- /dev/null
+++ b/src/listeners/vendingmodelistener.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_VENDINGMODELISTENER_H
+#define LISTENERS_VENDINGMODELISTENER_H
+
+#include "listeners/baselistener.hpp"
+
+#include "localconsts.h"
+
+class VendingModeListener notfinal
+{
+ public:
+ virtual void vendingEnabled(const bool b) = 0;
+
+ static void distributeEvent(const bool b);
+
+ defineListenerHeader(VendingModeListener)
+};
+
+#endif // LISTENERS_VENDINGMODELISTENER_H