home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / monsters.ads < prev    next >
Text File  |  1996-03-01  |  818b  |  27 lines

  1. --
  2. -- Copyright (C) 1996 Ada Resource Association (ARA), Columbus, Ohio.
  3. -- Author: David A. Wheeler
  4. --
  5.  
  6. with Creatures;
  7. use  Creatures;
  8.  
  9. package Monsters is
  10.  type Monster is new Creature with private;
  11.  type Monster_Access    is access Monster'Class;
  12. private
  13.  type Monster is new Creature with null record;
  14. end Monsters;
  15.  
  16. --
  17. -- Permission to use, copy, modify, and distribute this software and its
  18. -- documentation for any purpose and without fee is hereby granted,
  19. -- provided that the above copyright and authorship notice appear in all
  20. -- copies and that both that copyright notice and this permission notice
  21. -- appear in supporting documentation.
  22. -- 
  23. -- The ARA makes no representations about the suitability of this software
  24. -- for any purpose.  It is provided "as is" without express
  25. -- or implied warranty.
  26. -- 
  27.