mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 20:05:39 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
27 lines
400 B
C++
27 lines
400 B
C++
#ifndef IMAGEITEMDATA_H
|
|
#define IMAGEITEMDATA_H
|
|
|
|
#include <wx/treectrl.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class ImageItemData : public wxTreeItemData
|
|
{
|
|
public:
|
|
ImageItemData();
|
|
virtual ~ImageItemData();
|
|
|
|
bool Dossier;
|
|
bool Image;
|
|
|
|
string Nom;
|
|
|
|
protected:
|
|
private:
|
|
};
|
|
|
|
#endif // IMAGEITEMDATA_H
|