* * rct2: 0x0066CCE7 */
| 1973 | * rct2: 0x0066CCE7 |
| 1974 | */ |
| 1975 | void ToggleFootpathWindow() |
| 1976 | { |
| 1977 | auto* windowMgr = GetWindowManager(); |
| 1978 | if (windowMgr->FindByClass(WindowClass::footpath) == nullptr) |
| 1979 | { |
| 1980 | ContextOpenWindow(WindowClass::footpath); |
| 1981 | } |
| 1982 | else |
| 1983 | { |
| 1984 | ToolCancel(); |
| 1985 | windowMgr->CloseByClass(WindowClass::footpath); |
| 1986 | } |
| 1987 | } |
| 1988 | |
| 1989 | /** |
| 1990 | * |
no test coverage detected