예제 #1
0
파일: menu.c 프로젝트: zid/naev
/**
 * @brief Function to exit the main menu and game.
 *    @param str Unused.
 */
static void menu_main_credits( unsigned int wid, char* str )
{
   (void) str;
   (void) wid;
   intro_display( "AUTHORS", "credits" );
   /* We'll need to start music again. */
   music_choose("load");
}
예제 #2
0
파일: main.cpp 프로젝트: dauten97/Dork
int main(int argc, char *argv[])
{
	display_init();
	intro_display();
	/*User function calls
	 */
    getch();
    display_close();
    return 0;
}