| 53 | } |
| 54 | |
| 55 | static std::string_view get_skin() |
| 56 | { |
| 57 | const int SIZE = 8; |
| 58 | static std::string_view names[SIZE] = |
| 59 | {"WindowCSX", "ScrollView", "ButtonX", "ButtonV", "Button", "EditBoxStretch", "RadioButton", "CheckBox"}; |
| 60 | return names[random(SIZE)]; |
| 61 | } |
| 62 | |
| 63 | static std::string_view get_layer() |
| 64 | { |
no test coverage detected