home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLShape.h < prev    next >
Encoding:
Text File  |  1997-06-14  |  209 b   |  16 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved.
  3.  
  4. #ifndef __SHAPES_H
  5. #define __SHAPES_H
  6.  
  7. class TDrawSlate;
  8.  
  9. class TShape
  10. {
  11. public:
  12.     virtual ~TShape();
  13.     virtual void RenderOn( TDrawSlate* )=0;
  14. };
  15.  
  16. #endif