mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
30 lines
528 B
C++
30 lines
528 B
C++
#include "ImageEditor.h"
|
|
|
|
//(*InternalHeaders(ImageEditor)
|
|
#include <wx/intl.h>
|
|
#include <wx/string.h>
|
|
//*)
|
|
|
|
//(*IdInit(ImageEditor)
|
|
//*)
|
|
|
|
BEGIN_EVENT_TABLE(ImageEditor,wxFrame)
|
|
//(*EventTable(ImageEditor)
|
|
//*)
|
|
END_EVENT_TABLE()
|
|
|
|
ImageEditor::ImageEditor(wxWindow* parent)
|
|
{
|
|
//(*Initialize(ImageEditor)
|
|
Create(parent, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE, _T("wxID_ANY"));
|
|
SetClientSize(wxSize(400,403));
|
|
//*)
|
|
}
|
|
|
|
ImageEditor::~ImageEditor()
|
|
{
|
|
//(*Destroy(ImageEditor)
|
|
//*)
|
|
}
|
|
|