// Copyright Citra Emulator Project / Azahar Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include namespace UpdateChecker { std::optional GetResponse(std::string url, std::string path); std::optional GetLatestRelease(bool); } // namespace UpdateChecker