Michaël Lemaire
ddd9d7d638
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@201 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
24 lines
361 B
C
24 lines
361 B
C
#ifndef _PAYSAGES_GLOBALS_H_
|
|
#define _PAYSAGES_GLOBALS_H_
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|