| 2 | #include "UIRenderer.h" |
| 3 | |
| 4 | UIImageButton::UIImageButton(float x, float y, float w, float h, IDirect3DTexture9* image) |
| 5 | { |
| 6 | this->x = x; |
| 7 | this->y = y; |
| 8 | this->w = w; |
| 9 | this->h = h; |
| 10 | this->image = image; |
| 11 | } |
| 12 | |
| 13 | void UIImageButton::Draw(UIRenderer* renderer) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected