Working in UE4
This commit is contained in:
parent
f25ca44f03
commit
daa49af247
6 changed files with 29 additions and 73 deletions
|
@ -85,10 +85,18 @@ void checkForQuit() {
|
|||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello, World!" << '\n';
|
||||
std::cout << "Hello, World!\n";
|
||||
|
||||
std::thread inputThread(checkForQuit);
|
||||
|
||||
if (!HarmonyLinkLib::HL_Init())
|
||||
{
|
||||
std::cout << "Failed to init HarmonyLinkLib\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
std::cout << "HarmonyLinkLib successfully initialised!\n";
|
||||
|
||||
const bool isWine = HarmonyLinkLib::get_is_wine();
|
||||
const char* test = isWine ? "is" : "isn't";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue