Split static & shared lib

This commit is contained in:
acidicoala
2025-08-23 13:44:17 +05:00
parent b828ecc58a
commit dc086e40e0
48 changed files with 1048 additions and 1318 deletions

9
static/smoke_api/api.hpp Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include "smoke_api/types.hpp"
namespace smoke_api::api {
std::optional<std::vector<DLC>> fetch_dlcs_from_github(AppId_t app_id);
std::optional<std::vector<DLC>> fetch_dlcs_from_steam(AppId_t app_id);
}