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

  1. #define ZACIATOK02 0.0
  2. #define KONIEC02   17.5
  3. #define CFGNAME02 "data\\cfg\\tesla1.cfg"
  4.  
  5. class efekt_02 : public EFEKT
  6. {
  7. public:
  8.    int  go(double t);
  9.    int  init();
  10.    int  load();
  11.    int  free();
  12.    int  update();
  13.  
  14.    Texture3DS *texla;
  15.    Texture3DS *loading;
  16.    CameraDescent3DS cam;
  17.  
  18.    int plochy, podstava, vyska;
  19.    float real_in,intens, txadd, tyadd;
  20.    float cl_r,cl_g,cl_b;
  21.    float l_r,l_g,l_b;
  22.    float vis,minvis;
  23.    float tex_x_counter;
  24.    float tex_y_counter;
  25.    float uhol_counter;
  26. };
  27.