diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-03-30 08:47:31 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-03-30 08:47:31 -0400 |
commit | 0b1bfa28f33410acc1c3b95df1c1b748ce55b447 (patch) | |
tree | 807e942cfb92cb631b02ec0079da63838dd6741f /include/common.hpp | |
parent | c35571e37bdd6d2fe9b95e4265c150265585f3a9 (diff) | |
parent | a9a9777190086bd2ce2aa54e20a1101509614463 (diff) |
Inv and textures
Diffstat (limited to 'include/common.hpp')
-rw-r--r-- | include/common.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp index d69fc91..5159c88 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -40,7 +40,6 @@ typedef unsigned int uint; */ #define SHADERS -#define C(x) std::cout << x << std::endl template<typename N> N abso(N v){ @@ -118,7 +117,7 @@ typedef col Color; * Define the game's name (displayed in the window title). */ -#define GAME_NAME "Independent Study v.0.6 alpha - NOW WITH more c++" +#define GAME_NAME "Independent Study v0.7 alpha - NOW WITH lights and snow and stuff" /** * The desired width of the game window. @@ -177,6 +176,7 @@ extern float VOLUME_SFX; */ #define DEBUG_printf( message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__ ) +#define C(x) std::cout << x << std::endl; /** * Defines pi for calculations that need it. |