diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-26 07:49:33 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-26 07:49:33 -0500 |
commit | 26d71799f37bc325b6db0214268f4e72eb970ee9 (patch) | |
tree | 41306f63fc17fd176d720df8dfb90dde6bdc5159 /include/common.h | |
parent | 8f4cada7bf1068a9a3063636f7008cbe52875924 (diff) |
village cleanup?
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/common.h b/include/common.h index ff8d361..71335f2 100644 --- a/include/common.h +++ b/include/common.h @@ -186,23 +186,6 @@ extern unsigned int loops; extern GLuint shaderProgram; /** - * This class contains a string for identification and a value. It can be used to - * save certain events for and decisions so that they can be recalled later. - */ - -class Condition { -private: - char *id; - void *value; -public: - Condition(const char *_id,void *val); - ~Condition(); - - bool sameID(const char *s); - void *getValue(void); -}; - -/** * Prints a formatted debug message to the console, along with the callee's file and line * number. */ @@ -244,6 +227,4 @@ int strCreateFunc(const char *equ); template<typename N, size_t s> size_t arrAmt(N (&)[s]){return s;} -extern void *NULLPTR; - #endif // COMMON_H |