home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume4
/
xgo
/
part04
/
moveto.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-04-08
|
998b
|
40 lines
/*
* $Header: moveto.c,v 3.0 88/03/10 12:07:40 hale Exp $
*/
/*
Copyright 1987 Greg Hale
Permission to use, copy, modify, and distribute this
software and its documentation for any purpose and without
fee is hereby granted, provided that the above copyright
notice appear in all copies and that both that copyright
notice and this permission notice appear in supporting
documentation. No representations are made about the
suitability of this software for any purpose. It is
provided "as is" without express or implied warranty.
*/
#include "go.h"
moveto(x,y)
{
move(y+1,(x*2)+1);
}
/*
* $Log: moveto.c,v $
* Revision 3.0 88/03/10 12:07:40 hale
* Added save games, a few changes to the I/O,
* added load and clear options. Not thouroughly tested, though, and
* I think a few bugs are in the load code. A library of sample problems
* has been started and saved with the working directory.
*
* Revision 1.2 88/02/13 12:50:38 hale
* added logging.
*
*/