| 4 | #include "Renderer.h" |
| 5 | |
| 6 | GuiComponent::GuiComponent(Window* window) : mWindow(window), mParent(NULL), mOpacity(255), |
| 7 | mPosition(Eigen::Vector3f::Zero()), mSize(Eigen::Vector2f::Zero()), mTransform(Eigen::Affine3f::Identity()) |
| 8 | { |
| 9 | } |
| 10 | |
| 11 | GuiComponent::~GuiComponent() |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected