4b0bc220e4
Context-specific (like per-world) timescales can also be added later
14 lines
147 B
C++
14 lines
147 B
C++
#include "StarLayout.hpp"
|
|
|
|
namespace Star {
|
|
|
|
Layout::Layout() {
|
|
markAsContainer();
|
|
}
|
|
|
|
void Layout::update(float dt) {
|
|
Widget::update(dt);
|
|
}
|
|
|
|
}
|