home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / share / Os2 / JUEGOS / BOGGLE / SOURCE.ZIP / dice.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-30  |  237 b   |  17 lines

  1. #ifndef  BOGDICE_H
  2. #define  BOGDICE_H
  3.  
  4. #include  "common.hpp"
  5.  
  6. class Dice;
  7.  
  8. class Dice {
  9.    char faces[7];
  10.  
  11.  public:
  12.    Dice(const char *);
  13.    char *Roll();         //return a face based on random # generator
  14. };
  15.  
  16. #endif
  17.