Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/coll_rect.merge/src/lib/collision_reaction/cr_physics_full_walk.h @ 10010

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

merged the temp branch

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