summaryrefslogtreecommitdiff
path: root/src/listeners/playerdeathlistener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-02 13:35:49 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-02 13:35:49 +0300
commitce2e90b35291abe32c47e21569a58e9eb22cc87b (patch)
treec1336be7f447fbf3ad79a4103b2945e00e22ff4a /src/listeners/playerdeathlistener.h
parentc26b6e2c74750c1f4f99ef5d673ea6fc2aac767b (diff)
downloadplus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.tar.gz
plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.tar.bz2
plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.tar.xz
plus-ce2e90b35291abe32c47e21569a58e9eb22cc87b.zip
Add PlayerDeathListener.
Diffstat (limited to 'src/listeners/playerdeathlistener.h')
-rw-r--r--src/listeners/playerdeathlistener.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/listeners/playerdeathlistener.h b/src/listeners/playerdeathlistener.h
new file mode 100644
index 000000000..eeecfa204
--- /dev/null
+++ b/src/listeners/playerdeathlistener.h
@@ -0,0 +1,38 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 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/>.
+ */
+
+#ifndef LISTENERS_PLAYERDEATHLISTENER_H
+#define LISTENERS_PLAYERDEATHLISTENER_H
+
+#include "listeners/baselistener.hpp"
+
+#include "localconsts.h"
+
+class PlayerDeathListener notfinal
+{
+ public:
+ virtual void playerDeath() = 0;
+
+ static void distributeEvent();
+
+ defineListenerHeader(PlayerDeathListener)
+};
+
+#endif // LISTENERS_PLAYERDEATHLISTENER_H