Michaël Lemaire
3e14fedbca
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@550 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
22 lines
441 B
C
22 lines
441 B
C
#ifndef _PAYSAGES_EXPLORING_MAIN_H_
|
|
#define _PAYSAGES_EXPLORING_MAIN_H_
|
|
|
|
#include "../lib_paysages/renderer.h"
|
|
#include "../lib_paysages/camera.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void exploringInit();
|
|
void exploringSetViewPort(int width, int height, CameraDefinition* camera);
|
|
void exploringRenderFrame(Renderer* renderer);
|
|
|
|
void exploringStartStandAlone();
|
|
void exploringInterruptStandAlone();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|