revert old changes

This commit is contained in:
ohyzha
2025-01-18 16:14:02 +02:00
parent a5a1fd99d5
commit 5a5bac8479
6 changed files with 63 additions and 47 deletions

View File

@@ -0,0 +1,21 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include "Host/SystemFontResolver.hpp"
#include <filesystem>
namespace OpenVulkano
{
std::string SystemFontResolver::GetSystemFontPath(const std::string& fontName)
{
return "";
}
std::map<std::string, std::string> SystemFontResolver::ReadSystemFonts()
{
return {};
}
}