mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
12 lines
226 B
C++
12 lines
226 B
C++
/* $Id$ */
|
|
|
|
/** @file ai_gui.hpp Window for configuring the AIs */
|
|
|
|
#ifndef AI_GUI_HPP
|
|
#define AI_GUI_HPP
|
|
|
|
void ShowAIDebugWindow(CompanyID show_company = INVALID_COMPANY);
|
|
void ShowAIConfigWindow();
|
|
|
|
#endif /* AI_GUI_HPP */
|