| 82 | } |
| 83 | |
| 84 | static bool findTree(SurfaceElement* surface) |
| 85 | { |
| 86 | auto element = surface; |
| 87 | while (!element->isLast()) |
| 88 | { |
| 89 | element++; |
| 90 | if (element->type() == ElementType::tree) |
| 91 | { |
| 92 | return true; |
| 93 | } |
| 94 | } |
| 95 | return false; |
| 96 | } |
| 97 | |
| 98 | // 0x0045935F |
| 99 | void Industry::getStatusString(const char* buffer) |
no test coverage detected