4
|
1 /*--------------------------------------------------------------------------
|
|
2 NETREK II -- Paradise
|
|
3
|
|
4 Permission to use, copy, modify, and distribute this software and its
|
|
5 documentation, or any derivative works thereof, for any NON-COMMERCIAL
|
|
6 purpose and without fee is hereby granted, provided that this copyright
|
|
7 notice appear in all copies. No representations are made about the
|
|
8 suitability of this software for any purpose. This software is provided
|
|
9 "as is" without express or implied warranty.
|
|
10
|
|
11 Xtrek Copyright 1986 Chris Guthrie
|
|
12 Netrek (Xtrek II) Copyright 1989 Kevin P. Smith
|
|
13 Scott Silvey
|
|
14 Paradise II (Netrek II) Copyright 1993 Larry Denys
|
|
15 Kurt Olsen
|
|
16 Brandon Gillespie
|
|
17 --------------------------------------------------------------------------*/
|
|
18
|
|
19 #ifndef grid_h_
|
|
20 #define grid_h_
|
|
21
|
|
22 /* specifying an x,y of -1,-1 removes the item from the space grid */
|
|
23
|
|
24 /* the current coordinates of the object in question are not relevant */
|
|
25
|
|
26 void move_planet( /* pno, x, y, isold */ );
|
|
27 void move_player( /* pno, x, y, isold */ );
|
|
28
|
|
29 void move_torp( /* tno, x, y, isold */ );
|
|
30 void move_missile( /* dno, x, y, isold */ );
|
|
31
|
|
32 #endif
|