/*! \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: static TrackNode* getInstance (); ~TrackNode (); private: TrackNode (); TrackNode (Vector* absCoordinate); static TrackNode* singletonRef; TrackManager* trackManager; }; #endif /* _TRACK_NODE_H */