|
Last change
on this file since 3314 was
3311,
checked in by patrick, 21 years ago
|
|
oroxnox/branches/parenting: implemented helperParent and made some tests with the opengl nurbs lib
|
|
File size:
515 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file track_manager.h |
|---|
| 3 | \brief manages all tracks defined in the world and the path the player takes |
|---|
| 4 | |
|---|
| 5 | it is a container for all tracks and all track-nodes. it manages the movement of |
|---|
| 6 | the track helper-parent (that drives the player). it is responsable for calculating |
|---|
| 7 | smooth curves etc. |
|---|
| 8 | */ |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | #ifndef _TRACK_MANAGER_H |
|---|
| 12 | #define _TRACK_MANAGER_H |
|---|
| 13 | |
|---|
| 14 | #include "stdincl.h" |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | class TrackManager : public BaseObject { |
|---|
| 18 | |
|---|
| 19 | public: |
|---|
| 20 | TrackManager (); |
|---|
| 21 | ~TrackManager (); |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | }; |
|---|
| 26 | |
|---|
| 27 | #endif /* _TRACK_MANAGER_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.