OpenTTD Source  13.2.1
game_widget.h
1 /*
2  * This file is part of OpenTTD.
3  * 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.
4  * 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.
5  * 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/>.
6  */
7 
10 #ifndef WIDGETS_GS_WIDGET_H
11 #define WIDGETS_GS_WIDGET_H
12 
13 #include "../textfile_type.h"
14 
16 enum GSConfigWidgets {
17  WID_GSC_BACKGROUND,
18  WID_GSC_GSLIST,
19  WID_GSC_SETTINGS,
20  WID_GSC_SCROLLBAR,
21  WID_GSC_CHANGE,
22  WID_GSC_TEXTFILE,
23  WID_GSC_CONTENT_DOWNLOAD = WID_GSC_TEXTFILE + TFT_END,
24  WID_GSC_ACCEPT,
25  WID_GSC_RESET,
26 };
27 
28 #endif /* WIDGETS_GS_WIDGET_H */