Add assignment

This commit is contained in:
Job Noorman
2022-10-27 12:29:19 +02:00
commit 9f05ab03c1
49 changed files with 4339 additions and 0 deletions

14
EngineFactory.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef CHESS_ENGINE_ENGINEFACTORY_HPP
#define CHESS_ENGINE_ENGINEFACTORY_HPP
#include "Engine.hpp"
#include <memory>
class EngineFactory {
public:
static std::unique_ptr<Engine> createEngine();
};
#endif