Michaël Lemaire
ddd9d7d638
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@201 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
24 lines
373 B
C
24 lines
373 B
C
#ifndef _PAYSAGES_CONSTANTS_H_
|
|
#define _PAYSAGES_CONSTANTS_H_
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern Color COLOR_TRANSPARENT;
|
|
extern Color COLOR_BLACK;
|
|
extern Color COLOR_RED;
|
|
extern Color COLOR_GREEN;
|
|
extern Color COLOR_BLUE;
|
|
extern Color COLOR_WHITE;
|
|
extern Color COLOR_GREY;
|
|
|
|
extern Vector3 VECTOR_ZERO;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|