0ad/source/tools/atlas/AtlasUI/Misc/actored.cpp
Ykkrosh d0146135c4 Initial Actor Editor code
This was SVN commit r2025.
2005-03-19 22:29:32 +00:00

27 lines
448 B
C++

// Just a boring app that creates an ActorEditor window
#include "stdafx.h"
#include "ActorEditor/ActorEditor.h"
#include "wx/app.h"
class MyApp: public wxApp
{
bool OnInit();
};
IMPLEMENT_APP(MyApp)
#include <crtdbg.h>
bool MyApp::OnInit()
{
// _CrtSetBreakAlloc(1358);
// MyFrame *frame = new MyFrame("Hello World");
wxFrame *frame = new ActorEditor(NULL);
frame->Show();
SetTopWindow(frame);
return true;
}