mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-02 17:51:27 -06:00
* Update checker. * Fix build and enum class. * Get rid of submodule for httplib. * Get rid of submodule for curl. * Minor style changes and fix video.cpp Linux build error. * CTitleStateIntro_patches: implemented update message * Update update_checker.cpp * CTitleStateIntro_patches: fix fade out accepting input --------- Co-authored-by: Hyper <34012267+hyperbx@users.noreply.github.com>
19 lines
295 B
C
19 lines
295 B
C
#pragma once
|
|
|
|
struct UpdateChecker
|
|
{
|
|
enum class Result
|
|
{
|
|
NotStarted,
|
|
InProgress,
|
|
AlreadyUpToDate,
|
|
UpdateAvailable,
|
|
Failed
|
|
};
|
|
|
|
static void initialize();
|
|
static bool start();
|
|
static Result check();
|
|
static void visitWebsite();
|
|
};
|