You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
547 B
29 lines
547 B
#include "factory.h"
|
|
|
|
#include "ai.h"
|
|
#include "settings.h"
|
|
|
|
|
|
CommonFactory::CommonFactory(const MainData &md, const BaseBoardInfo &bbi,
|
|
const CommonBoardInfo &ci)
|
|
: BaseFactory(md, bbi), cbi(ci)
|
|
{}
|
|
|
|
TQWidget *CommonFactory::createAppearanceConfig()
|
|
{
|
|
return new AppearanceConfig;
|
|
}
|
|
|
|
TQWidget *CommonFactory::createGameConfig()
|
|
{
|
|
return new GameConfig;
|
|
}
|
|
|
|
TQWidget *CommonFactory::createAIConfig()
|
|
{
|
|
AI *ai = createAI();
|
|
TQWidget *cw = new AIConfig(ai->elements());
|
|
delete ai;
|
|
return cw;
|
|
}
|