1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-06-08 06:57:46 +00:00

Update libxiv

This commit is contained in:
Joshua Goins 2022-04-14 19:35:11 -04:00
parent d4ffead2a2
commit 964b94cc58
3 changed files with 18 additions and 1 deletions

2
external/libxiv vendored

@ -1 +1 @@
Subproject commit 58a24f08b86ea41e5c5b4cb18ec104b9ad872118
Subproject commit ba13bab4b7685be9fe20baa4f38e2534c7739942

10
include/dxvkinstaller.h Normal file
View file

@ -0,0 +1,10 @@
#pragma once
#include <QString>
#include <functional>
class LauncherCore;
class ProfileSettings;
// TODO: convert to a nice signal/slots class like assetupdater
void installDXVK(LauncherCore& launcher, ProfileSettings& profile);

7
src/dxvkinstaller.cpp Normal file
View file

@ -0,0 +1,7 @@
#include "dxvkinstaller.h"
#include "launchercore.h"
void installDXVK(LauncherCore& launcher, ProfileSettings& profile, std::function<void()> returnFunc) {
}