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

  1.  
  2. with Creatures;
  3. use  Creatures;
  4.  
  5. package Players is
  6.  type Player  is new Creature with private;
  7.  type Player_Access     is access Player'Class;
  8. private
  9.  type Player  is new Creature with null record;
  10. end Players;
  11.