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

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