Musa-Cpp-Lib-V2/unity_build_exe.cpp
2025-11-19 22:00:36 -05:00

22 lines
466 B
C++

#include "unity_build_lib.cpp"
#include "src/OS_Win32.cpp"
// #include "src/OS_Linux.cpp"
// #include "src/OS_MacOS.cpp"
// #include "imgui-docking.cpp"
#if OS_WINDOWS
#if BUILD_CONSOLE_INTERFACE
int wmain(int argc, WCHAR **argv) {
Win32_Entry_Point(argc, argv);
return 0;
}
#else
int wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd) {
Win32_Entry_Point(__argc, __wargv);
return 0;
}
#endif
#endif