00001 #ifndef _DIRTPATH_H_ 00002 #define _DIRTPATH_H_ 00003 00004 #include "Path.h" 00005 00011 class DirtPath : public Path 00012 { 00013 public: 00014 DirtPath(string filename); 00015 virtual ~DirtPath(); 00016 00017 virtual void draw(); 00018 00019 protected: 00020 }; 00021 00022 #endif