pandemonium_engine_minimal/scene/gui/panel.h

21 lines
287 B
C++
Raw Normal View History

2023-12-14 21:54:22 +01:00
#ifndef PANEL_H
#define PANEL_H
2023-12-14 21:54:22 +01:00
/* panel.h */
2023-12-14 21:54:22 +01:00
#include "scene/main/control.h"
class Panel : public Control {
GDCLASS(Panel, Control);
protected:
void _notification(int p_what);
public:
Panel();
~Panel();
};
#endif