osb/source/windowing/StarLayout.hpp
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

17 lines
257 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(float dt) override;
};
}
#endif