BitmapHandler.h 394 B

12345678910111213141516171819
  1. /*
  2. * BitmapHandler.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include <QImage>
  12. namespace BitmapHandler
  13. {
  14. //Load file from /DATA or /SPRITES
  15. QImage loadBitmap(const std::string & fname, bool setKey = true);
  16. }