Last change
on this file was
10013,
checked in by patrick, 18 years ago
|
merged the collision reaction branche back to trunk
|
File size:
613 bytes
|
Rev | Line | |
---|
[8200] | 1 | /*! |
---|
| 2 | * @file cr_object_damage.h |
---|
| 3 | * Definition of a collision reaction: dealing damage to an object |
---|
| 4 | */ |
---|
| 5 | |
---|
| 6 | #ifndef _CR_PHYSICS_GROUND_WALK_H |
---|
| 7 | #define _CR_PHYSICS_GROUND_WALK_H |
---|
| 8 | |
---|
| 9 | #include "collision_reaction.h" |
---|
| 10 | |
---|
[10013] | 11 | namespace CoRe |
---|
| 12 | { |
---|
[8200] | 13 | |
---|
[10013] | 14 | class Collision; |
---|
[8200] | 15 | |
---|
[10013] | 16 | //! A class representing a reaction to a collision: dealing damage to an object |
---|
| 17 | class CRPhysicsGroundWalk : public CollisionReaction |
---|
| 18 | { |
---|
| 19 | ObjectListDeclaration(CRPhysicsGroundWalk); |
---|
[8200] | 20 | public: |
---|
| 21 | CRPhysicsGroundWalk(); |
---|
| 22 | virtual ~CRPhysicsGroundWalk(); |
---|
| 23 | |
---|
| 24 | virtual void reactToCollision(Collision* collision); |
---|
| 25 | |
---|
[10013] | 26 | }; |
---|
[8256] | 27 | |
---|
[10013] | 28 | } |
---|
[8200] | 29 | #endif /* _CR_PHYSICS_GROUND_WALK_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.