pandemonium_engine_minimal/scene/gui/panel.h

21 lines
287 B
C++

#ifndef PANEL_H
#define PANEL_H
/* panel.h */
#include "scene/main/control.h"
class Panel : public Control {
GDCLASS(Panel, Control);
protected:
void _notification(int p_what);
public:
Panel();
~Panel();
};
#endif