2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-18 03:02:07 +00:00

feat: add modman title handler for linux

This commit is contained in:
Jan Laupetin
2025-10-31 22:49:38 +01:00
parent b1bd9b9ffc
commit d964929681
6 changed files with 87 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
#include "AssetHandlerLinux.h"
#if defined(WEBVIEW_PLATFORM_LINUX) && defined(WEBVIEW_GTK)
#include "Web/UiAssets.h"
#include <format>
#include <iostream>
#include <unordered_map>
using namespace PLATFORM_NAMESPACE_LINUX;
namespace
{
} // namespace
namespace PLATFORM_NAMESPACE_LINUX
{
void InstallFaviconHandler(webview::webview& wv) {}
} // namespace PLATFORM_NAMESPACE_LINUX
#endif