home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / gina15.zip / demos / sleuth / SleuthCommandM < prev    next >
Text File  |  1992-02-27  |  850b  |  34 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : SleuthCommandMixin.h   Version 1.2
  4. //   LastSCCS    : 2/26/92  16:39:01
  5. //   LastEdit    : "Tue Feb 25 10:32:51 1992"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. #ifndef Sleuthcommandmixin_h
  11. #define Sleuthcommandmixin_h
  12.  
  13. class SleuthCommandMixin : public GnObject {
  14.     META_DEF_1(SleuthCommandMixin,GnObject);
  15.   protected:
  16.     PlayerView     *sleuth_view;
  17.     Player         *player;
  18.     SleuthDocument *sleuth_document;
  19.     int             round;
  20.   public:
  21.     SleuthCommandMixin(PlayerView *view);
  22.   public:
  23.     PlayerView *GetSleuthView()
  24.     { return sleuth_view; }
  25.     Player *GetPlayer()
  26.     { return player; }
  27.     SleuthDocument *GetSleuthDocument()
  28.     { return sleuth_document; }
  29.     int GetRound()
  30.     { return round; }
  31. };
  32.  
  33. #endif
  34.