Slic3r/src/GUI/Plater/Plate3D.hpp

17 lines
252 B
C++

#ifndef PLATE3D_HPP
#define PLATE3D_HPP
#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
namespace Slic3r { namespace GUI {
class Plate3D : public wxPanel {
public:
void update() {};
};
} } // Namespace Slic3r::GUI
#endif