| 13 | { |
| 14 | |
| 15 | GraphicButton::GraphicButton(sp<Image> image, sp<Image> imageDepressed, sp<Image> imageHover) |
| 16 | : Control(), image(image), imagedepressed(imageDepressed), imagehover(imageHover), |
| 17 | buttonclick( |
| 18 | fw().data->loadSample("RAWSOUND:xcom3/rawsound/strategc/intrface/button1.raw:22050")) |
| 19 | { |
| 20 | isClickable = true; |
| 21 | } |
| 22 | |
| 23 | GraphicButton::~GraphicButton() = default; |
| 24 |
nothing calls this directly
no test coverage detected