home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / temacd / planearcade / planearcade.exe / Tank3.bmp / particlestruct.h < prev    next >
C/C++ Source or Header  |  2004-02-08  |  412b  |  30 lines

  1.  
  2.  
  3. //----------------------
  4. //EMITTER
  5. //----------------------
  6. struct EMITTER
  7. {
  8.     EMITTER_TYPE Type;
  9.     VECTOR3D Position;
  10.  
  11.     //box
  12.     float SizeX,SizeY,SizeZ;
  13.  
  14.     //sphere
  15.     float Radius;
  16.  
  17. };
  18.  
  19.  
  20. //------------------------
  21. //PARTICLEPOINT
  22. //------------------------
  23. struct PARTICLEPOINT
  24. {
  25.     VECTOR3D Position;
  26.     VECTOR3D Direction;  //smer plus sila
  27.     float Time;
  28.     float Rotation;
  29.     bool Active;
  30. };