~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/being/actorspritelistener.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  The ManaPlus Client
 
3
 *  Copyright (C) 2010  The Mana Developers
 
4
 *  Copyright (C) 2011-2013  The ManaPlus Developers
 
5
 *
 
6
 *  This file is part of The ManaPlus Client.
 
7
 *
 
8
 *  This program is free software; you can redistribute it and/or modify
 
9
 *  it under the terms of the GNU General Public License as published by
 
10
 *  the Free Software Foundation; either version 2 of the License, or
 
11
 *  any later version.
 
12
 *
 
13
 *  This program is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 *  GNU General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU General Public License
 
19
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
 
 
22
#ifndef BEING_ACTORSPRITELISTENER_H
 
23
#define BEING_ACTORSPRITELISTENER_H
 
24
 
 
25
class ActorSprite;
 
26
 
 
27
class ActorSpriteListener
 
28
{
 
29
    public:
 
30
        /**
 
31
         * Destructor.
 
32
         */
 
33
        virtual ~ActorSpriteListener()
 
34
        { }
 
35
 
 
36
        /**
 
37
         * Called when the ActorSprite has been destroyed. The listener will
 
38
         * have to be registered first.
 
39
         * @param actorSprite the ActorSprite being destroyed.
 
40
         */
 
41
        virtual void actorSpriteDestroyed(const ActorSprite &actorSprite) = 0;
 
42
};
 
43
 
 
44
#endif  // BEING_ACTORSPRITELISTENER_H