mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-04 16:01:32 +08:00
17 lines
252 B
C++
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
|