mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
21 lines
287 B
C++
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
|