| 1 | #include "GuiBox.h" |
| 2 | |
| 3 | GuiBox::GuiBox(Window* window, float offsetX, float offsetY, float width, float height) : GuiComponent(window), mBackgroundImage(window), |
| 4 | mHorizontalImage(window), mVerticalImage(window), mCornerImage(window) |
| 5 | { |
| 6 | setPosition(offsetX, offsetY); |
| 7 | setSize(width, height); |
| 8 | } |
| 9 | |
| 10 | void GuiBox::setData(GuiBoxData data) |
| 11 | { |
nothing calls this directly
no outgoing calls
no test coverage detected