pandemonium_engine_minimal/scene/gui/panel_container.h

22 lines
391 B
C++
Raw Permalink Normal View History

2023-12-14 21:54:22 +01:00
#ifndef PANEL_CONTAINER_H
#define PANEL_CONTAINER_H
2023-12-14 21:54:22 +01:00
/* panel_container.h */
2023-12-14 21:54:22 +01:00
#include "scene/gui/container.h"
class PanelContainer : public Container {
GDCLASS(PanelContainer, Container);
protected:
void _notification(int p_what);
public:
virtual Size2 get_minimum_size() const;
PanelContainer();
};
#endif // PANEL_CONTAINER_H