native service, EGL, native test client

This commit is contained in:
2025-12-28 20:30:55 +01:00
parent de82e50bd5
commit 19400fd2b2
27 changed files with 13683 additions and 23 deletions

8
src/main/cpp/logger.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
#include <string>
class Logger
{
public:
static void Log(const std::string& message);
};