Advertisement
Mr-A

A-Engine <globals.h> v0.07

Aug 5th, 2014
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. //==========Globals.h===========
  2. #ifndef GLOBALS_INCLUDED
  3. #define GLOBALS_INCLUDED
  4.  
  5. #define SW 1024
  6. #define SH 768
  7.  
  8. //=================================
  9. // included dependencies
  10. #include <string>
  11. //=================================
  12.  
  13. const int SFWIDTH = SW;
  14. const int SFHEIGHT= SH;
  15. const std::string LOADTXTDIR= "obj\\load.txt";
  16.  
  17. #endif  // GLOBALS_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement