mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
10 lines
224 B
C++
10 lines
224 B
C++
#include "EntryPoint.h"
|
|
#include "GDevelopIDEApp.h"
|
|
|
|
extern "C" int LaunchGDIDE(int argc, char **argv)
|
|
{
|
|
GDevelopIDEApp * app = new GDevelopIDEApp;
|
|
wxApp::SetInstance(app);
|
|
return wxEntry(argc, argv);
|
|
}
|