Files
UnrealEngine/Engine/Source/Programs/EpicWebHelper/Private/Mac/EpicWebHelperMac.cpp
2025-05-18 13:04:45 +08:00

17 lines
336 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "EpicWebHelper.h"
int main(int argc, char *argv[])
{
#if WITH_CEF3
// Structure for passing command-line arguments.
// The definition of this structure is platform-specific.
CefMainArgs MainArgs(argc, argv);
return RunCEFSubProcess(MainArgs);
#else
return 0;
#endif
}