aboutsummaryrefslogtreecommitdiff
path: root/scene/gui/panel.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/gui/panel.h')
-rw-r--r--scene/gui/panel.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/scene/gui/panel.h b/scene/gui/panel.h
index 34c73960e..3d2c0a3e9 100644
--- a/scene/gui/panel.h
+++ b/scene/gui/panel.h
@@ -33,18 +33,16 @@
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
-class Panel : public Control{
+class Panel : public Control {
- GDCLASS(Panel,Control);
-protected:
+ GDCLASS(Panel, Control);
+protected:
void _notification(int p_what);
+
public:
Panel();
~Panel();
-
};
-
-
#endif