Files
cpl_cpp-project/EngineFactory.hpp
2022-10-27 13:07:24 +02:00

15 lines
214 B
C++

#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