Define ColorBlack

This commit is contained in:
Eryn Wells 2013-09-07 22:12:35 -07:00
parent e77e9488c0
commit 7b30584ba5
2 changed files with 4 additions and 0 deletions

View file

@ -11,6 +11,8 @@
const Vector3 ZeroVector3 = {0.0, 0.0, 0.0};
const Color ColorBlack = {0, 0, 0, 0};
/*
* vector_init --

View file

@ -51,5 +51,7 @@ typedef struct {
uint8_t red, green, blue, alpha;
} Color;
extern const Color ColorBlack;
#endif