* Get a bitmask for company links to be displayed. Usually this will be * the _local_company. Spectators get to see all companies' links. * @return Company mask. */
| 725 | * @return Company mask. |
| 726 | */ |
| 727 | inline CompanyMask GetOverlayCompanyMask() const |
| 728 | { |
| 729 | return Company::IsValidID(_local_company) ? CompanyMask{}.Set(_local_company) : CompanyMask{}.Set(); |
| 730 | } |
| 731 | |
| 732 | /** Blink the industries (if selected) on a regular interval. */ |
| 733 | const IntervalTimer<TimerWindow> blink_interval = {TIMER_BLINK_INTERVAL, [this](auto) { |
no test coverage detected