Cmake и ClientCache

This commit is contained in:
2025-06-26 11:20:31 +06:00
parent e99ae2f6ba
commit 9470d14151
7 changed files with 404 additions and 53 deletions

View File

@@ -2,8 +2,17 @@
#include <boost/asio.hpp>
#include <Client/Vulkan/Vulkan.hpp>
#include <Client/ResourceCache.hpp>
namespace LV {
/*
База ресурсов на стороне клиента
Протокол получения ресурсов, удаления, потом -> регулировки размера
*/
using namespace TOS;
int main() {
@@ -25,5 +34,9 @@ int main() {
TOS::Logger::addLogFile(".*", TOS::EnumLogType::All, "log.raw");
std::cout << "Hello world!" << std::endl;
return LV::main();
//return LV::main();
LV::Client::ResourceCacheHandler handler("cache");
return 0;
}