2011-12-10 13:25:22 +00:00
|
|
|
#ifndef _PAYSAGES_CONSTANTS_H_
|
|
|
|
#define _PAYSAGES_CONSTANTS_H_
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2011-12-23 22:58:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-12-10 13:25:22 +00:00
|
|
|
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;
|
|
|
|
|
2011-12-23 22:58:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-12-10 13:25:22 +00:00
|
|
|
#endif
|