Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/coll_rect/src/lib/collision_reaction/cr_object_damage.h @ 9894

Last change on this file since 9894 was 9889, checked in by patrick, 18 years ago

added namspacing to collision reaction. now comes the harder part :D

File size: 589 bytes
RevLine 
[8006]1/*!
2 * @file cr_object_damage.h
3 *  Definition of a collision reaction: dealing damage to an object
4 */
5
6#ifndef _CR_OBJECT_DAMAGE_H
7#define _CR_OBJECT_DAMAGE_H
8
[9889]9
[8006]10#include "collision_reaction.h"
11
12
[9889]13namespace CoRe
14{
[8006]15
[9889]16  class Collision;
17
18  //! A class representing a reaction to a collision: dealing damage to an object
19  class CRObjectDamage : public CollisionReaction
20  {
21    ObjectListDeclaration(CRObjectDamage);
[8006]22  public:
23    CRObjectDamage();
24    virtual ~CRObjectDamage();
25
26    virtual void reactToCollision(Collision* collision);
27
28  private:
29
[9889]30  };
31}
[8006]32
33#endif /* _CR_OBJECT_DAMAGE_H */
Note: See TracBrowser for help on using the repository browser.