mirror of
https://github.com/wiiu-env/Flappy-Bird_GX2.git
synced 2024-11-27 10:04:16 +01:00
17 lines
180 B
C
17 lines
180 B
C
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
/* Main */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//! C wrapper for our C++ functions
|
|
int Menu_Main(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|