DEFINITION MODULE Options; (********************************************************************** *************** Written by Ed Bartz *************** *************** Copyright 5/21/87 *************** *************** This program may be redistributed *************** *************** or modified as long as these *************** *************** notices and all other references *************** *************** to the author remain intack. *************** *************** Also this may not be used for *************** *************** profit by anyone without the *************** *************** express permission of the author. *************** **********************************************************************) FROM Intuition IMPORT WindowPtr; FROM GW IMPORT Pl; PROCEDURE DeletePlanet(wp: WindowPtr;VAR pl: ARRAY OF Pl;VAR Pnum: CARDINAL); PROCEDURE MakePlanet(wp: WindowPtr;VAR Sh,pl: ARRAY OF Pl;VAR Pnum,ptype: CARDINAL); PROCEDURE ChangePlanet(wp: WindowPtr;VAR pl: ARRAY OF Pl;Pnum,ptype: CARDINAL); PROCEDURE MoveShip(wp: WindowPtr;VAR Sh,pl: ARRAY OF Pl;Pnum :CARDINAL); PROCEDURE MovePlanet(wp: WindowPtr;VAR Sh,pl: ARRAY OF Pl;Pnum,ptype :CARDINAL); PROCEDURE CleanScreen (wp: WindowPtr;VAR Sh,pl: ARRAY OF Pl;Pnum,ptype: CARDINAL); PROCEDURE IdentifyS(x,y: CARDINAL; VAR Sh: ARRAY OF Pl): CARDINAL; END Options.