mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-20 10:30:00 +01:00
13 lines
283 B
C++
13 lines
283 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
namespace UpdateChecker {
|
|
std::optional<std::string> GetLatestRelease(bool);
|
|
}
|