MapObjects.h 681 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. /*
  3. * MapObjects.h, part of VCMI engine
  4. *
  5. * Authors: listed in file AUTHORS in main folder
  6. *
  7. * License: GNU General Public License v2.0 or later
  8. * Full text of license available in license.txt file, in main folder
  9. *
  10. */
  11. // Helper header that includes all map objects, similar to old CObjectHandler.h
  12. // Possible TODO - remove this header after CObjectHandler.cpp will be fully split into smaller files
  13. #include "CObjectHandler.h"
  14. #include "CGArmedInstance.h"
  15. #include "CGBank.h"
  16. #include "CGHeroInstance.h"
  17. #include "CGMarket.h"
  18. #include "CGTownInstance.h"
  19. #include "CGPandoraBox.h"
  20. #include "CRewardableObject.h"
  21. #include "MiscObjects.h"
  22. #include "CQuest.h"