mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
26 lines
961 B
C
26 lines
961 B
C
|
/*
|
||
|
* 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 help_widget.h Types related to the help window widgets. */
|
||
|
|
||
|
#ifndef WIDGETS_HELP_WIDGET_H
|
||
|
#define WIDGETS_HELP_WIDGET_H
|
||
|
|
||
|
/** Widgets of the #HelpWindow class. */
|
||
|
enum HelpWindowWidgets {
|
||
|
WID_HW_README,
|
||
|
WID_HW_CHANGELOG,
|
||
|
WID_HW_KNOWN_BUGS,
|
||
|
WID_HW_LICENSE,
|
||
|
WID_HW_WEBSITE,
|
||
|
WID_HW_WIKI,
|
||
|
WID_HW_BUGTRACKER,
|
||
|
WID_HW_COMMUNITY,
|
||
|
};
|
||
|
|
||
|
#endif /* WIDGETS_HELP_WIDGET_H */
|