/********************************************************************* * * * FLY * * --E#Y#E-- * * ===MUSCLE=== * * * *********************************************************************/ /* Header Files */ #include "help.h" /*---------------------------------------------------------------------------*/ /* Display Version */ void version() { printf("Fly Simulator Version 3.46.9 \n"); } /*---------------------------------------------------------------------------*/ /* Show Help Desk */ void help_Desk(int egac) { switch(egac) { case 1: printf("\ usage: flysimu [ -F ][ -W ][ -G ][ -S ][ -C ][ -h ][ -v ]\n\n"); break; case 2: printf("\ usage: flysimu [ -F ][ -W ][ -G ][ -S ][ -C ][ -h ][ -v ]\n\n\ -F Fullscreen\n\ -W Window\n\ -G Grid\n\ -S Server\n\ -C Client\n\n\ -h Display the Help Messages\n\ -v Fly Simulator Version \n\n"); break; } } /*---------------------------------------------------------------------------*/