Files
GDevelop/IDE/EntryPoint.cpp
T
Florian d90df40f31 Integrated changes of branch to the trunk.
git-svn-id: svn://localhost@907 8062f311-0dae-4547-b526-b8ab9ac864a5
2013-02-04 21:58:46 +00:00

10 lines
248 B
C++

#include "EntryPoint.h"
#include "Game_Develop_EditorApp.h"
extern "C" int LaunchGDIDE(int argc, char **argv)
{
Game_Develop_EditorApp * app = new Game_Develop_EditorApp;
wxApp::SetInstance(app);
return wxEntry(argc, argv);
}