Added render interface and sfml renderer

This commit is contained in:
Clément Le Bihan
2020-01-30 17:33:47 +01:00
parent f76b47cc3d
commit 76bdee9fb5
5 changed files with 92 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
//
// Created by cbihan on 1/30/20.
//
#include "SFRenderer.hpp"
namespace ComSquare::Renderer
{
void SFRenderer::setWindowName(std::string)
{
}
void SFRenderer::drawScreen()
{
}
void SFRenderer::putPixel(int x, int y, uint8_t rgba)
{
(void) x;
(void) y;
(void) rgba;
}
}