home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ Games Programming
/
CPPGAMES.ISO
/
thx
/
demos
/
shootout
/
build
/
menu.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-05-05
|
282 b
|
22 lines
// --------- menu.h
#ifndef MENU_H
#define MENU_H
#include "theatrix.h"
#include "pointer.h"
class Menu : public SceneDirector {
void on_enter();
void on_escape();
void display();
DECLARE_CUELIST
public:
Menu();
~Menu();
Pointer *pointer;
};
#endif