CZonePlacer.cpp 586 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * CZonePlacer.cpp, 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. #include "StdInc.h"
  11. #include "CZonePlacer.h"
  12. #include "CZoneGraphGenerator.h"
  13. CPlacedZone::CPlacedZone(const CRmgTemplateZone * zone)// : zone(zone)
  14. {
  15. }
  16. CZonePlacer::CZonePlacer()// : map(nullptr), gen(nullptr)
  17. {
  18. }
  19. CZonePlacer::~CZonePlacer()
  20. {
  21. }
  22. void CZonePlacer::placeZones(CMap * map, unique_ptr<CZoneGraph> graph, CRandomGenerator * gen)
  23. {
  24. }