File indexing completed on 2024-04-28 04:04:43

0001 /*
0002     SPDX-FileCopyrightText: 2006 Matthew Williams <matt@milliams.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef NEWGAMEDIALOG_H
0008 #define NEWGAMEDIALOG_H
0009 
0010 #include "ui_newgamewidget.h"
0011 
0012 #include <QDialog>
0013 
0014 class NewGameDialog : public QDialog, public Ui::NewGameWidget
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit NewGameDialog(QWidget *parent = nullptr);
0019 
0020 public Q_SLOTS:
0021     void adjustEnabledUsers(int);
0022 };
0023 
0024 #endif // NEWGAMEDIALOG_H