home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ Games Programming
/
CPPGAMES.ISO
/
thx
/
demos
/
mfighter
/
build
/
intro.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-01-25
|
242 b
|
17 lines
#include <fastgraf.h>
#include <conio.h>
#include "intro.h"
void Intro::display()
{
init_video();
show_pcx("intro.pcx");
swap_video_pages();
}
void Intro::take_over()
{
while (kbhit()) getch();
getch();
}