2011-12-10 13:25:22 +00:00
|
|
|
#ifndef _PAYSAGES_GLOBALS_H_
|
|
|
|
#define _PAYSAGES_GLOBALS_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 Vector3 camera_location;
|
|
|
|
|
|
|
|
extern int render_width;
|
|
|
|
extern int render_height;
|
|
|
|
extern int render_quality;
|
|
|
|
|
|
|
|
extern double sun_color_lum;
|
|
|
|
extern Vector3 sun_direction;
|
|
|
|
extern Vector3 sun_direction_inv;
|
|
|
|
|
2011-12-23 22:58:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-12-10 13:25:22 +00:00
|
|
|
#endif
|