| 
                Last change
                  on this file since 10402 was
                  10368,
                  checked in by patrick, 19 years ago
           | 
        
        
          | 
               
merged the branche playability into the trunk 
 
           | 
        
        | 
            File size:
            612 bytes
           | 
      
      
        
  | Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |  * @file track_node.h | 
|---|
| 3 |   *  Definition of the TrackNode are located here | 
|---|
| 4 |  | 
|---|
| 5 |     the TrackNode is the node, that follows the Track (and the TrackManager) | 
|---|
| 6 |     through the level. | 
|---|
| 7 |     Under normal confitions the Plyaer(s) are | 
|---|
| 8 | */ | 
|---|
| 9 |  | 
|---|
| 10 |  | 
|---|
| 11 | #ifndef _TRACK_NODE_H | 
|---|
| 12 | #define _TRACK_NODE_H | 
|---|
| 13 |  | 
|---|
| 14 | #include "p_node.h" | 
|---|
| 15 |  | 
|---|
| 16 |  | 
|---|
| 17 | /* FORWARD DECLARATION */ | 
|---|
| 18 | class TrackManager; | 
|---|
| 19 |  | 
|---|
| 20 | //! A node that follows the track. | 
|---|
| 21 | class TrackNode : public PNode | 
|---|
| 22 | { | 
|---|
| 23 |   ObjectListDeclaration(TrackNode); | 
|---|
| 24 |  public: | 
|---|
| 25 |   TrackNode (); | 
|---|
| 26 |   virtual ~TrackNode (); | 
|---|
| 27 |  | 
|---|
| 28 |  private: | 
|---|
| 29 |   TrackManager* trackManager;         //!< reference to the TrackManager | 
|---|
| 30 |  | 
|---|
| 31 | }; | 
|---|
| 32 |  | 
|---|
| 33 | #endif /* _TRACK_NODE_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.