summaryrefslogtreecommitdiff
path: root/src/wx/film_editor.h
blob: d1278b80e88430ea2cfdd1804bbcc7199c5c7750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <wx/wx.h>

class Film;

class FilmEditor : public wxPanel
{
public:
	FilmEditor (Film* f, wxFrame *);

private:
	Film* _film;
};