Add assignment
This commit is contained in:
14
EngineFactory.hpp
Normal file
14
EngineFactory.hpp
Normal 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
|
Reference in New Issue
Block a user