Added blank worker thread

This commit is contained in:
2023-06-09 16:47:46 -04:00
parent a436c20037
commit c6558ac0b4
6 changed files with 94 additions and 5 deletions

View File

@@ -14,6 +14,14 @@ void init_wrapper(EngineWrapper* w) {
}
}
// Print text using GEngine->Add...
void RawPrint(const char* text) {
if (GEngine)
{
GEngine->AddOnScreenDebugMessage(-1, 15.0f, FColor::Yellow, FString(text));
}
}
static TArray<FString> dprints;
void DPrint(const FString& fs) {