1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-19 21:10:12 +02:00
vcmi/launcher/helper.h

23 lines
451 B
C++
Raw Normal View History

2024-04-21 16:56:39 +02:00
/*
2025-01-15 20:30:48 +01:00
* helper.h, part of VCMI engine
2024-04-21 16:56:39 +02:00
*
* 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
2025-01-15 20:30:48 +01:00
#include <QString>
class QObject;
2024-04-21 16:56:39 +02:00
namespace Helper
{
void loadSettings();
void enableScrollBySwiping(QObject * scrollTarget);
2025-01-15 20:30:48 +01:00
QString getRealPath(QString path);
void performNativeCopy(QString src, QString dst);
2024-04-21 16:56:39 +02:00
}