CZoneGraphGenerator.cpp 616 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * CZoneGraphGenerator.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 "CZoneGraphGenerator.h"
  12. CZoneCell::CZoneCell(const CRmgTemplateZone * zone)// : zone(zone)
  13. {
  14. }
  15. CZoneGraph::CZoneGraph()
  16. {
  17. }
  18. CZoneGraphGenerator::CZoneGraphGenerator()// : gen(nullptr)
  19. {
  20. }
  21. std::unique_ptr<CZoneGraph> CZoneGraphGenerator::generate(const CMapGenOptions & options, CRandomGenerator * gen)
  22. {
  23. return make_unique<CZoneGraph>();
  24. }