| 12 | { |
| 13 | |
| 14 | CheckBox::CheckBox(sp<Image> ImageChecked, sp<Image> ImageUnchecked) |
| 15 | : Control(), imagechecked(ImageChecked), imageunchecked(ImageUnchecked), |
| 16 | buttonclick( |
| 17 | fw().data->loadSample("RAWSOUND:xcom3/rawsound/strategc/intrface/button1.raw:22050")), |
| 18 | Checked(false) |
| 19 | { |
| 20 | isClickable = true; |
| 21 | } |
| 22 | |
| 23 | CheckBox::~CheckBox() = default; |
| 24 |
nothing calls this directly
no test coverage detected