home *** CD-ROM | disk | FTP | other *** search
/ Groovy Bytes: Behind the Moon / groovybytes.iso / GROOVY / DEMOS / MISC_DEM / SUNKNOWN.ZIP / PLAYER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-06  |  131 b   |  14 lines

  1. // PLAYER.H
  2.  
  3. #ifndef _PLAYER_H
  4. #define _PLAYER_H
  5.  
  6. #include "coor.h"
  7.  
  8. class player_C
  9. {
  10. public:
  11.   coor_C *rc;
  12. };
  13.  
  14. #endif