home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / mfighter / build / help.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  309 b   |  26 lines

  1. #include <fastgraf.h>
  2. #include <conio.h>
  3. #include "help.h"
  4.  
  5. Help::Help()
  6.   {
  7.   }
  8.  
  9. Help::~Help()
  10.   {
  11.   }
  12.  
  13. void Help::display()
  14.   {
  15.   init_video();
  16.   fg_move(0,0);
  17.   show_pcx("help.pcx");
  18.   swap_video_pages();
  19.   }
  20.  
  21. void Help::take_over()
  22.   {
  23.   while (kbhit())  getch();
  24.   getch();
  25.   }
  26.