home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume4 / xgo / part04 / moveto.c < prev    next >
C/C++ Source or Header  |  1988-04-08  |  998b  |  40 lines

  1. /*
  2.  * $Header: moveto.c,v 3.0 88/03/10 12:07:40 hale Exp $
  3.  */
  4.  
  5. /*
  6.  
  7.         Copyright 1987      Greg Hale
  8.  
  9. Permission to use, copy, modify, and distribute this
  10. software and its documentation for any purpose and without
  11. fee is hereby granted, provided that the above copyright
  12. notice appear in all copies and that both that copyright
  13. notice and this permission notice appear in supporting
  14. documentation.  No representations are made about the
  15. suitability of this software for any purpose.  It is
  16. provided "as is" without express or implied warranty.
  17.  
  18. */
  19.  
  20.  
  21. #include "go.h"
  22. moveto(x,y)
  23. {
  24.     move(y+1,(x*2)+1);
  25. }
  26.  
  27. /*
  28.  * $Log:    moveto.c,v $
  29.  * Revision 3.0  88/03/10  12:07:40  hale
  30.  * Added save games, a few changes to the I/O,
  31.  * added load and clear options.  Not thouroughly tested, though, and
  32.  * I think a few bugs are in the load code.  A library of sample problems
  33.  * has been started and saved with the working directory.
  34.  * 
  35.  * Revision 1.2  88/02/13  12:50:38  hale
  36.  * added logging.
  37.  * 
  38.  */
  39.  
  40.