class AiSetup : public QDialog
{
Q_OBJECT
public:
AiSetup(SOptions *opt,QWidget *parent,const char *name=0);
protected slots:
void okPressed();
void helpPressed();
private:
SOptions *options;
QPushButton *ok,*cancel,*help;
QComboBox *AiCombo[2];
QCheckBox *AiCheck[2];
static char DifficultyName[DNUM][10];
};