mirror of
https://github.com/wiiu-env/Flappy-Bird_GX2.git
synced 2024-11-16 04:59:17 +01:00
15 lines
461 B
C
15 lines
461 B
C
|
#include <string.h>
|
||
|
#include "dynamic_libs/os_functions.h"
|
||
|
#include "dynamic_libs/sys_functions.h"
|
||
|
#include "common/common.h"
|
||
|
#include "utils/utils.h"
|
||
|
#include "main.h"
|
||
|
|
||
|
int __entry_menu(int argc, char **argv)
|
||
|
{
|
||
|
//! *******************************************************************
|
||
|
//! * Jump to our application *
|
||
|
//! *******************************************************************
|
||
|
return Menu_Main();
|
||
|
}
|