1 /*
2     SPDX-FileCopyrightText: 2013 Alexander Schuch <aschuch247@gmail.com>
3 
4     SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #ifndef AI_EXAMPLE_GUI_H
8 #define AI_EXAMPLE_GUI_H
9 
10 #include "../../player_gui.h"
11 
12 
13 class AiExampleGui : public PlayerGui
14 {
15 public:
16     explicit AiExampleGui();
17     Player* createInstance(Game *game, const QString &newName, const QColor &color) const override;
18 };
19 
20 #endif // AI_EXAMPLE_GUI_H
21