| 11 | namespace OpenApoc |
| 12 | { |
| 13 | TriStateBox::TriStateBox(sp<Image> Image1, sp<Image> Image2, sp<Image> Image3) |
| 14 | : Control(), image1(Image1), image2(Image2), image3(Image3), |
| 15 | buttonclick( |
| 16 | fw().data->loadSample("RAWSOUND:xcom3/rawsound/strategc/intrface/button1.raw:22050")), |
| 17 | State(1) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | TriStateBox::~TriStateBox() = default; |
| 22 |
nothing calls this directly
no test coverage detected