Files
@ r28657:ee447a88ccab
Branch filter:
Location: cpp/openttd-patchpack/source/src/widgets/league_widget.h - annotation
r28657:ee447a88ccab
1.1 KiB
text/x-c
Feature: Order flag to unbunch vehicles at depot (#11945)
r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r28354:ddc7bb191071 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r28354:ddc7bb191071 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 r26612:e1c0fa463732 | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file league_widget.h Types related to the graph widgets. */
#ifndef WIDGETS_LEAGUE_WIDGET_H
#define WIDGETS_LEAGUE_WIDGET_H
/** Widget of the #PerformanceLeagueWindow class. */
enum PerformanceLeagueWidgets : WidgetID {
WID_PLT_BACKGROUND, ///< Background of the window.
};
/** Widget of the #ScriptLeagueWindow class. */
enum ScriptLeagueWidgets : WidgetID {
WID_SLT_CAPTION, ///< Caption of the window.
WID_SLT_BACKGROUND, ///< Background of the window.
};
#endif /* WIDGETS_LEAGUE_WIDGET_H */
|