1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-05-13 22:06:58 +02:00
vcmi/mapeditor/helper.h
2025-04-05 22:30:31 +02:00

21 lines
511 B
C++

/*
* helper.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
class CMap;
class CampaignState;
namespace Helper
{
std::unique_ptr<CMap> openMapInternal(const QString &);
std::shared_ptr<CampaignState> openCampaignInternal(const QString &);
void saveCampaign(std::shared_ptr<CampaignState> campaignState, const QString & filename);
}