summaryrefslogtreecommitdiff
path: root/src/listeners
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-16 17:07:21 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-16 17:07:21 +0300
commit70b8ee71b559e968ad1b5c740703910f79351c5f (patch)
tree6f572f3c940267e03f90e77733d37a7a42b623f8 /src/listeners
parentb3a0b3dc161face77bfd13791655c79343aab3a8 (diff)
downloadplus-70b8ee71b559e968ad1b5c740703910f79351c5f.tar.gz
plus-70b8ee71b559e968ad1b5c740703910f79351c5f.tar.bz2
plus-70b8ee71b559e968ad1b5c740703910f79351c5f.tar.xz
plus-70b8ee71b559e968ad1b5c740703910f79351c5f.zip
move actorspritelistener into listeners directory.
Diffstat (limited to 'src/listeners')
-rw-r--r--src/listeners/actorspritelistener.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/listeners/actorspritelistener.h b/src/listeners/actorspritelistener.h
new file mode 100644
index 000000000..7b4d89b44
--- /dev/null
+++ b/src/listeners/actorspritelistener.h
@@ -0,0 +1,44 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2010 The Mana Developers
+ * 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/>.
+ */
+
+#ifndef LISTENERS_ACTORSPRITELISTENER_H
+#define LISTENERS_ACTORSPRITELISTENER_H
+
+class ActorSprite;
+
+class ActorSpriteListener
+{
+ public:
+ /**
+ * Destructor.
+ */
+ virtual ~ActorSpriteListener()
+ { }
+
+ /**
+ * Called when the ActorSprite has been destroyed. The listener will
+ * have to be registered first.
+ * @param actorSprite the ActorSprite being destroyed.
+ */
+ virtual void actorSpriteDestroyed(const ActorSprite &actorSprite) = 0;
+};
+
+#endif // LISTENERS_ACTORSPRITELISTENER_H