mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 02:25:52 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
32 lines
378 B
C++
32 lines
378 B
C++
#ifndef IMAGEEDITOR_H
|
|
#define IMAGEEDITOR_H
|
|
|
|
//(*Headers(ImageEditor)
|
|
#include <wx/frame.h>
|
|
//*)
|
|
|
|
class ImageEditor: public wxFrame
|
|
{
|
|
public:
|
|
|
|
ImageEditor(wxWindow* parent);
|
|
virtual ~ImageEditor();
|
|
|
|
//(*Declarations(ImageEditor)
|
|
//*)
|
|
|
|
protected:
|
|
|
|
//(*Identifiers(ImageEditor)
|
|
//*)
|
|
|
|
private:
|
|
|
|
//(*Handlers(ImageEditor)
|
|
//*)
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|