home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / docs / lovelace / world.ads < prev    next >
Encoding:
Text File  |  1995-10-24  |  253 b   |  15 lines

  1.  
  2. with Occupants;
  3. use  Occupants;
  4.  
  5. package World is
  6.  
  7.  procedure Setup;
  8.   -- Setup the World; initialize the contents of the world.
  9.  
  10.  
  11.  function Me return Occupant_Access;
  12.            -- Return an access variable pointing to the current player.
  13.  
  14. end World;
  15.