Guest User

Untitled

a guest
Oct 29th, 2016
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #ifndef __winGL__
  2. #define __winGL__ 1
  3.  
  4. #include "EstruturasDeDados.h"
  5.  
  6. void desenhaPonto(tPonto P0, eCor c);
  7. void desenhaQuadrante(tPonto P0, tPonto P1, eCor c);
  8. void desenhaAsteroide(tPonto P0, float raio, eCor c);
  9. void desenhaNave(tPonto P0, eCor c);
  10. void desenhaLinha(tPonto P0, tPonto P1, eCor c);
  11.  
  12. void idle(void);
  13.  
  14. void display(void);
  15.  
  16. void initOpenGL(void);
  17.  
  18. void reshape(int w, int h);
  19.  
  20. void keyboard(unsigned char key, int x, int y);
  21. void specialKeyboard(int key, int x, int y);
  22.  
  23. void criaJanela(int argc, char** argv);
  24.  
  25. void initEventos(void);
  26.  
  27. #endif
Add Comment
Please, Sign In to add comment