| 3 | #include "../Log.h" |
| 4 | |
| 5 | ScrollableContainer::ScrollableContainer(Window* window) : GuiComponent(window), |
| 6 | mAutoScrollDelay(0), mAutoScrollSpeed(0), mAutoScrollTimer(0), mScrollPos(0, 0), mScrollDir(0, 0) |
| 7 | { |
| 8 | } |
| 9 | |
| 10 | void ScrollableContainer::render(const Eigen::Affine3f& parentTrans) |
| 11 | { |
nothing calls this directly
no outgoing calls
no test coverage detected