1 /* 2 SPDX-FileCopyrightText: 2006 Pierre Ducroquet <pinaraf@pinaraf.info> 3 4 SPDX-License-Identifier: GPL-2.0-or-later 5 */ 6 7 #include "normal.h" 8 AiDefaultNormal(Game * game,const QString & newName,const QColor & color)9AiDefaultNormal::AiDefaultNormal( 10 Game *game, 11 const QString &newName, 12 const QColor &color) 13 : AiDefault( 14 game, 15 newName, 16 color, 17 AiDefault::Normal) 18 { 19 } 20