home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 April / Game.EXE_04_2002.iso / Alawar / TwinPictureFormat.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-02-20  |  459 b   |  20 lines

  1. #ifndef TWINPICTUREFORMAT_H
  2. #define TWINPICTUREFORMAT_H
  3.  
  4. #include "PictureFormat.h"
  5. class String;
  6.  
  7. class TwinPictureFormat : public PictureFormat
  8. {
  9.     Color * data;
  10.     unsigned sx;
  11.     unsigned sy;
  12.     static bool recursion;
  13. public:    
  14.     explicit TwinPictureFormat(const String & name);
  15.     virtual ~TwinPictureFormat();
  16.     virtual const Color * colors()const;    
  17.     virtual unsigned height()const;
  18.     virtual unsigned width()const;
  19. };
  20. #endif //TWINPICTUREFORMAT_H