home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ Games Programming
/
CPPGAMES.ISO
/
thx
/
demos
/
mfighter
/
build
/
intro.h
< 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-02-02
|
268 b
|
18 lines
#ifndef INTRO_H
#define INTRO_H
#include "game.h"
class Intro : public VideoDirector
{
public:
void display();
void take_over();
int get_director_id() { return INTRO_ID; }
int get_next_director_id() { return MENU_ID; }
};
#endif