mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
2ab3cb8d05
Moved the wxCrafter project into the same folder as the extension
26 lines
754 B
C++
26 lines
754 B
C++
#ifndef TILESETCONFIGURATIONEDITOR_H
|
|
#define TILESETCONFIGURATIONEDITOR_H
|
|
#include "TileMapDialogs.h"
|
|
|
|
#include "TileSet.h"
|
|
|
|
class ResourcesEditor;
|
|
namespace gd {class MainFrameWrapper;}
|
|
|
|
class TileSetConfigurationEditor : public TileSetConfigurationEditorBase
|
|
{
|
|
public:
|
|
TileSetConfigurationEditor(wxWindow* parent, TileSet &tileSet_, gd::Project & game, gd::MainFrameWrapper & mainFrameWrapper);
|
|
virtual ~TileSetConfigurationEditor();
|
|
|
|
private:
|
|
TileSet &tileSet;
|
|
ResourcesEditor *resourcesEditorPnl;
|
|
|
|
protected:
|
|
virtual void OnCancelButtonClicked(wxCommandEvent& event);
|
|
virtual void OnOkButtonClicked(wxCommandEvent& event);
|
|
virtual void OnSetTextureButtonClicked(wxCommandEvent& event);
|
|
};
|
|
#endif // TILESETCONFIGURATIONEDITOR_H
|