Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/collision_reaction/cr_object_damage.h

Last change on this file was 10013, checked in by patrick, 17 years ago

merged the collision reaction branche back to trunk

File size: 577 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
[10013]9
[8006]10#include "collision_reaction.h"
11
12
[10013]13namespace CoRe
14{
[8006]15
[10013]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
[10013]28  };
29}
[8006]30
31#endif /* _CR_OBJECT_DAMAGE_H */
Note: See TracBrowser for help on using the repository browser.