File indexing completed on 2024-12-01 03:47:54
0001 /* 0002 SPDX-FileCopyrightText: 2013 Alexander Schuch <aschuch247@gmail.com> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef AI_BECAI_GUI_H 0008 #define AI_BECAI_GUI_H 0009 0010 #include "../../player_gui.h" 0011 0012 0013 class AiBecaiGui : public PlayerGui 0014 { 0015 public: 0016 explicit AiBecaiGui(); 0017 Player* createInstance(Game *game, const QString &newName, const QColor &color) const override; 0018 }; 0019 0020 #endif // AI_BECAI_GUI_H