osb/source/windowing/StarLayout.cpp

14 lines
147 B
C++
Raw Permalink Normal View History

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