Last change
on this file since 10240 was
10013,
checked in by patrick, 18 years ago
|
merged the collision reaction branche back to trunk
|
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 | |
---|
11 | namespace 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.