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

  1. #include <fastgraf.h>
  2. #include <conio.h>
  3. #include "intro.h"
  4.  
  5. void Intro::display()
  6.   {
  7.   init_video();
  8.   show_pcx("intro.pcx");
  9.   swap_video_pages();
  10.   }
  11.  
  12. void Intro::take_over()
  13.   {
  14.   while (kbhit())  getch();
  15.   getch();
  16.   }
  17.