/*! \file track_node.h \brief Definition of the TrackNode are located here the TrackNode is the node, that follows the Track (and the TrackManager) through the level. Under normal confitions the Plyaer(s) are */ #ifndef _TRACK_NODE_H #define _TRACK_NODE_H #include "p_node.h" /* FORWARD DEFINITION */ class TrackManager; class TrackNode : public PNode { public: TrackNode (); TrackNode (const Vector& absCoordinate); virtual ~TrackNode (); private: TrackManager* trackManager; }; #endif /* _TRACK_NODE_H */