1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00
astra/include/gameinstaller.h
Joshua Goins 5d0e8936ee Improved Windows support
Now works out of the box on Windows MSVC,
prevents settings crash because of nonexistent Wine options,
and also further improves use-cases where you might not
have all the libraries required to build.
2022-03-27 21:08:27 -04:00

9 lines
No EOL
216 B
C++

#pragma once
#include <QString>
#include <functional>
class LauncherCore;
// TODO: convert to a nice signal/slots class like assetupdater
void installGame(LauncherCore& launcher, std::function<void()> returnFunc);