CSimpleWindow.h 525 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include "UIFramework/CIntObject.h"
  3. /*
  4. * CSimpleWindow.h, part of VCMI engine
  5. *
  6. * Authors: listed in file AUTHORS in main folder
  7. *
  8. * License: GNU General Public License v2.0 or later
  9. * Full text of license available in license.txt file, in main folder
  10. *
  11. */
  12. // Window GUI class
  13. class CSimpleWindow : public CIntObject
  14. {
  15. public:
  16. SDL_Surface * bitmap; //background
  17. virtual void show(SDL_Surface * to);
  18. CSimpleWindow():bitmap(NULL){}; //c-tor
  19. virtual ~CSimpleWindow(); //d-tor
  20. };