Freeciv21
Develop your civilization from humble roots to a global empire
ruledit.h
Go to the documentation of this file.
1 /**************************************************************************
2  Copyright (c) 1996-2020 Freeciv21 and Freeciv contributors. This file is
3  __ __ part of Freeciv21. Freeciv21 is free software: you can
4 / \\..// \ redistribute it and/or modify it under the terms of the GNU
5  ( oo ) General Public License as published by the Free Software
6  \__/ Foundation, either version 3 of the License, or (at your
7  option) any later version. You should have received
8  a copy of the GNU General Public License along with Freeciv21. If not,
9  see https://www.gnu.org/licenses/.
10 **************************************************************************/
11 #ifndef FC__RULEDIT_H
12 #define FC__RULEDIT_H
13 
14 #include <QString>
15 
16 void show_experimental(QWidget *wdg);
17 
19  // Ruleset name. Is empty if not specified.
20  QString ruleset;
21 };
22 
23 extern struct ruledit_arguments reargs;
24 
25 #endif // FC__RULEDIT_H
struct ruledit_arguments reargs
Definition: ruledit.cpp:52
void show_experimental(QWidget *wdg)
Show widget if experimental features enabled, hide otherwise.
Definition: ruledit.cpp:163
QString ruleset
Definition: ruledit.h:20