Files
GDevelop/IDE/EntryPoint.cpp
T
2015-03-10 23:02:00 +13:00

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);
}