~ubuntu-branches/ubuntu/trusty/plee-the-bear/trusty-proposed

« back to all changes in this revision

Viewing changes to plee-the-bear/src/ptb/item/projectile_enemy.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
  Plee the Bear
3
3
 
4
 
  Copyright (C) 2005-2009 Julien Jorge, Sebastien Angibaud
 
4
  Copyright (C) 2005-2010 Julien Jorge, Sebastien Angibaud
5
5
 
6
6
  This program is free software; you can redistribute it and/or modify it
7
7
  under the terms of the GNU General Public License as published by the
24
24
/**
25
25
 * \file projectile_enemy.hpp
26
26
 * \brief The class describing a projectile enemy.
 
27
 * The valid fields for this item are
 
28
   *  - \a projectile_model: (string) \b the model of the projectile,
 
29
   *  - any field supported by the parent classes.
 
30
   *
27
31
 * \author S�bastien Angibaud
28
32
 */
29
33
#ifndef __PTB_PROJECTILE_ENEMY_HPP__
44
48
    public monster_item
45
49
      < bear::engine::model< bear::engine::base_item > >
46
50
  {
47
 
    DECLARE_BASE_ITEM(projectile_enemy, ptb);
 
51
    DECLARE_BASE_ITEM(projectile_enemy);
48
52
 
49
53
  public:
50
54
    /** \brief The type of the parent class. */
65
69
    void leaves_active_region();
66
70
 
67
71
  protected:
68
 
    virtual void has_attacked();
 
72
    virtual void has_attacked(const monster& other);
69
73
 
70
74
  private:
71
75
    /** \brief The model of the projectile. */