Last change
on this file since 4518 was
4511,
checked in by patrick, 20 years ago
|
orxonox/trunk: collision detection classes names and structures filled in
|
File size:
343 bytes
|
Line | |
---|
1 | /*! |
---|
2 | \file collision.h |
---|
3 | \brief Definition of a collision event |
---|
4 | |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _COLLISION_H |
---|
8 | #define _COLLISION_H |
---|
9 | |
---|
10 | #include "base_object.h" |
---|
11 | |
---|
12 | // FORWARD DEFINITION |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | //! A class representing a simple collision |
---|
17 | class Collision : public BaseObject { |
---|
18 | |
---|
19 | public: |
---|
20 | Collision(); |
---|
21 | virtual ~Collision(); |
---|
22 | |
---|
23 | |
---|
24 | private: |
---|
25 | |
---|
26 | }; |
---|
27 | |
---|
28 | #endif /* _COLLISION_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.