diff options
Diffstat (limited to 'source/q_shared.h')
-rw-r--r-- | source/q_shared.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/q_shared.h b/source/q_shared.h index de1e8f2..197ef8f 100644 --- a/source/q_shared.h +++ b/source/q_shared.h @@ -169,7 +169,7 @@ extern vec3_t vec3_origin; #define NUMVERTEXNORMALS 162 -extern vec3_t bytedirs[NUMVERTEXNORMALS]; +extern const vec3_t bytedirs[NUMVERTEXNORMALS]; extern const color_t colorBlack; extern const color_t colorRed; @@ -182,6 +182,8 @@ extern const color_t colorWhite; extern const color_t colorTable[8]; +extern const char colorNames[10][8]; + typedef struct vrect_s { int x, y, width, height; } vrect_t; |