10 lines
226 B
C++
Executable File
10 lines
226 B
C++
Executable File
#ifndef CONSTANTS_HPP
|
|
#define CONSTANTS_HPP
|
|
|
|
#define SQ_10 10
|
|
#define SQ_E 2.71828182845904523536f
|
|
#define SQ_PI 3.14159265358979323846264338327950288f
|
|
#define SQ_CONST_STRING _SC("A constant string")
|
|
|
|
#endif // CONSTANTS_HPP
|