Advertisement
Rapptz

Untitled

Nov 5th, 2012
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #ifndef CONSTANTS_H
  2. #define CONSTANTS_H
  3.  
  4. namespace screen {
  5.     const size_t width = 800;
  6.     const size_t height = 600;
  7. } //namespace screen
  8.  
  9. namespace math {
  10.     const double pi = 3.14159265358979323846;
  11.     const double radiansPerDegree = pi/180;
  12. } //namespace math
  13.  
  14. #endif //CONSTANTS_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement