You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
project-kyoku/src/impl/sfml/classicmode/classicfactorysfml.h

18 lines
447 B
C++

#pragma once
#include <SFML/Graphics/RenderWindow.hpp>
#include <memory>
#include "shared/classicmode/classicfactory.h"
class ClassicFactorySFML : public ClassicFactory
{
public:
explicit ClassicFactorySFML(sf::RenderTarget * const render_target);
virtual std::unique_ptr<kku::Game> getGame() const override;
virtual std::unique_ptr<kku::Editor> getEditor() const override;
private:
sf::RenderTarget * const _render_target;
};