1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00
astra/launcher/core/include/gameinstaller.h

10 lines
272 B
C
Raw Normal View History

#pragma once
#include <QString>
#include <functional>
class LauncherCore;
class ProfileSettings;
// TODO: convert to a nice signal/slots class like assetupdater
2022-09-05 17:26:26 -04:00
void installGame(LauncherCore& launcher, ProfileSettings& profile, const std::function<void()>& returnFunc);