home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 9
/
CDACTUAL9.iso
/
share
/
Os2
/
JUEGOS
/
BOGGLE
/
SOURCE.ZIP
/
dice.hpp
< 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-07-30
|
237 b
|
17 lines
#ifndef BOGDICE_H
#define BOGDICE_H
#include "common.hpp"
class Dice;
class Dice {
char faces[7];
public:
Dice(const char *);
char *Roll(); //return a face based on random # generator
};
#endif