File indexing completed on 2024-10-06 03:46:38

0001 /*
0002     SPDX-FileCopyrightText: 2013 Alexander Schuch <aschuch247@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "example.h"
0008 
0009 AiExample::AiExample(
0010         Game *game,
0011         const QString &newName,
0012         const QColor &color)
0013     : ComputerPlayer(
0014         game,
0015         newName,
0016         color)
0017 {
0018 }
0019 
0020 
0021 void
0022 AiExample::play()
0023 {
0024     Q_EMIT donePlaying();
0025 }