osb/source/windowing/StarLayout.cpp
Kae 4b0bc220e4 Support for changing the game's timescale
Context-specific (like per-world) timescales can also be added later
2023-07-21 00:58:49 +10:00

14 lines
147 B
C++

#include "StarLayout.hpp"
namespace Star {
Layout::Layout() {
markAsContainer();
}
void Layout::update(float dt) {
Widget::update(dt);
}
}