#ifndef CHESS_ENGINE_ENGINEFACTORY_HPP #define CHESS_ENGINE_ENGINEFACTORY_HPP #include "Engine.hpp" #include class EngineFactory { public: static std::unique_ptr createEngine(); }; #endif