home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Games / NeXTGo-3.0-MIS / history.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-06  |  508 b   |  31 lines

  1. #include "comment.header"
  2.  
  3. /* $Id: history.h,v 1.3 1997/07/06 19:38:24 ergo Exp $ */
  4.  
  5. /*
  6.  * $Log: history.h,v $
  7.  * Revision 1.3  1997/07/06 19:38:24  ergo
  8.  * actual version
  9.  *
  10.  * Revision 1.2  1997/05/04 18:57:21  ergo
  11.  * added time control for moves
  12.  *
  13.  */
  14.  
  15. #ifndef _game_history_
  16. #define _game_history_
  17.  
  18. struct change {
  19.   int added;
  20.   int color, x, y;
  21. };
  22.  
  23. typedef struct {
  24.   int numchanges, blackCaptured, whiteCaptured;
  25.   struct change *changes;
  26. } gameHistory;
  27.  
  28. extern gameHistory gameMoves[500];
  29.  
  30. #endif
  31.