* Check whether the engine is hidden in the GUI for the given company. * @param c Company to check. * @return \c true iff the engine is hidden in the GUI for the given company. */
| 133 | * @return \c true iff the engine is hidden in the GUI for the given company. |
| 134 | */ |
| 135 | inline bool IsHidden(CompanyID c) const |
| 136 | { |
| 137 | return c < MAX_COMPANIES && this->company_hidden.Test(c); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Get the last display variant for an engine. |
no test coverage detected