mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
d90df40f31
git-svn-id: svn://localhost@907 8062f311-0dae-4547-b526-b8ab9ac864a5
10 lines
248 B
C++
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);
|
|
}
|