Advertisement
atm959

includes.h

Jan 17th, 2019
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. #ifndef INCLUDES_H
  2. #define INCLUDES_H
  3.  
  4. #include <stdlib.h>
  5. #include <math.h>
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <malloc.h>
  9.  
  10. #include <gccore.h>
  11. #include <wiiuse/wpad.h>
  12.  
  13. Mtx44 projectionMatrix;
  14. Mtx44 viewMatrix;
  15. Mtx44 translationMatrix;
  16. Mtx44 scaleMatrix;
  17. Mtx44 rotationMatrix;
  18. Mtx44 modelViewMatrix;
  19.  
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement