[add] first

This commit is contained in:
2023-10-08 10:24:48 +08:00
commit b1ae0510a9
1048 changed files with 3254361 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
namespace il2cpp
{
namespace os
{
namespace lumin
{
namespace automation
{
void Bootstrap();
void WaitForAppThread();
}
}
}
}

View File

@@ -0,0 +1,15 @@
#pragma once
#include <string>
namespace il2cpp
{
namespace os
{
namespace lumin
{
std::string PathForErrorLog();
std::string PathForOutputLog();
}
}
}

View File

@@ -0,0 +1,16 @@
#pragma once
#include <string>
namespace il2cpp
{
namespace os
{
namespace lumin
{
extern std::string GetPackageName();
extern std::string GetPackageTempPath();
extern void LifecycleInit();
}
}
}