| 61 | } |
| 62 | |
| 63 | static std::string_view get_layer() |
| 64 | { |
| 65 | const int SIZE = 4; |
| 66 | static const std::string_view names[SIZE] = {std::string_view{}, "Main", "Overlapped", "Popup"}; |
| 67 | return names[random(SIZE)]; |
| 68 | } |
| 69 | |
| 70 | static MyGUI::IntCoord get_coord() |
| 71 | { |
no test coverage detected