2012-01-29 17:39:56 +00:00
|
|
|
#ifndef _PAYSAGES_MAIN_H_
|
|
|
|
#define _PAYSAGES_MAIN_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void paysagesInit();
|
2012-02-12 16:57:29 +00:00
|
|
|
void paysagesQuit();
|
2012-01-29 17:39:56 +00:00
|
|
|
void paysagesSave(char* filepath);
|
|
|
|
void paysagesLoad(char* filepath);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|