home *** CD-ROM | disk | FTP | other *** search
/ 3D Games (Spidla) / 3dhry1.iso / carterrain / src / loop.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-03-17  |  204 b   |  20 lines

  1. #ifndef _LOOP_H_
  2. #define _LOOP_H_
  3.  
  4. #include "trig.h"
  5.  
  6. class CLoop
  7. {
  8.  public:
  9.   unsigned int vertices;
  10.   CVector *vertex;
  11.  
  12.   CLoop(char * f);
  13.   ~CLoop();
  14.  
  15.   void draw(void);
  16. };
  17.  
  18. #endif
  19.  
  20.