home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 February / Chip_2001-02_cd1.bin / bonus / demos / CS / exp / SOURCES / DEMO / EFEKT.H < prev    next >
C/C++ Source or Header  |  2000-08-14  |  536b  |  30 lines

  1. #ifndef __EFEKT__
  2. #define __EFEKT__
  3.  
  4. #define refresh 70.0
  5.  
  6. class EFEKT
  7. {
  8. public:
  9.         EFEKT() {
  10.           start=false;
  11.           end=false;
  12.           counter=0;
  13.           };
  14.         ~EFEKT() {};
  15.  
  16.         bool start;
  17.         bool end;
  18.         double counter;
  19.         int id;
  20.         static Textures3DS *texture_library;
  21.  
  22.         virtual int  go(double i) = 0;
  23.         virtual int init() = 0 ;
  24.         virtual int load() = 0 ;
  25.         virtual int free() = 0 ;
  26.         virtual int update() = 0 ;
  27. };
  28.  
  29. #endif
  30.