osb/source/windowing/StarLayout.cpp

14 lines
137 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#include "StarLayout.hpp"
namespace Star {
Layout::Layout() {
markAsContainer();
}
void Layout::update() {
Widget::update();
}
}