add self-update option via --update

This commit is contained in:
Lion Kortlepel
2023-12-29 00:00:43 +01:00
parent b4d6f90012
commit a89b51ca50
4 changed files with 268 additions and 0 deletions

9
include/Update.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <string>
namespace Update {
[[noreturn]] void PerformUpdate(const std::string& InvokedAs);
}