+ fixed internal.h incude

This commit is contained in:
Julian Hinxlage 2019-11-07 12:54:39 +01:00
parent 9d0766612f
commit c8f2ce4027
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ public:
};
const Color black = Color(0, 0, 0);
const Color white = Color(255, 255, 255);
const static Color black = Color(0, 0, 0);
const static Color white = Color(255, 255, 255);
#endif

View File

@ -9,7 +9,7 @@ public:
int getValue();
};
const KeyCode Backspace = KeyCode(8);
const KeyCode tabulator = KeyCode(9);
const static KeyCode Backspace = KeyCode(8);
const static KeyCode tabulator = KeyCode(9);
#endif