Starbound/source/windowing/StarLayout.hpp
2025-03-21 22:23:30 +11:00

16 lines
249 B
C++

#ifndef STAR_LAYOUT_HPP
#define STAR_LAYOUT_HPP
#include "StarWidget.hpp"
namespace Star {
// VERY simple base class for a layout container object.
class Layout : public Widget {
public:
Layout();
virtual void update() override;
};
}
#endif