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

  1. #define ZACIATOK09 160.0
  2. #define KONIEC09   172.8 
  3. #define CFGNAME09  "data\\cfg\\valec.cfg"
  4.  
  5. class efekt_09 : public EFEKT
  6. {
  7. public:
  8.    int  go(double t);
  9.    int  init();
  10.    int  load();
  11.    int  free();
  12.    int  update();
  13.    void RenderValec(float f, float pos_x, float pos_y, float size, float inte);
  14.  
  15.    Scene3DS *sce;
  16.    CameraTarget3DS *kam;
  17.    Texture3DS *tex1;
  18.    Texture3DS *tex2;
  19.    float int1,int2;
  20.    float f_counter1;
  21.    float f_counter2;
  22.  
  23.    float begin3d;
  24.    float end3d;
  25.  
  26.    char scene_name[30];
  27.    char camera_name[30];  
  28.    float cl_r,cl_g,cl_b;
  29.    float vis,minvis;
  30. };
  31.