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

  1.  
  2. #ifndef _BSP_H_
  3. #define _BSP_H_
  4.  
  5. //-----------------------------------
  6. //CUSTOMVERTEX
  7. //---------------------------------------
  8. struct CUSTOMVERTEXBSP
  9. {
  10.     D3DXVECTOR3 pos; //Position
  11.     D3DCOLOR color;
  12.     FLOAT       tu1, tv1;   
  13.     FLOAT       tu2, tv2;   
  14. };
  15.  
  16. //CUSTOMVERTEXT
  17. #define D3DFVF_CUSTOMVERTEXBSP (D3DFVF_XYZ|D3DFVF_DIFFUSE|D3DFVF_TEX2)
  18.  
  19. //struktury - read
  20. #include "rbspstruct.h"
  21.  
  22. //struktura
  23. #include "bspstruct.h"
  24.  
  25. //trieda
  26. #include "bspclass.h"
  27.  
  28.  
  29.  
  30. #endif