mirror of
https://github.com/zoriya/ComSquare.git
synced 2025-12-21 06:35:10 +00:00
31 lines
508 B
C++
31 lines
508 B
C++
//
|
|
// Created by anonymus-raccoon on 2/5/20.
|
|
//
|
|
|
|
#include "NoRenderer.hpp"
|
|
|
|
namespace ComSquare::Renderer
|
|
{
|
|
void NoRenderer::setWindowName(std::string newWindowName)
|
|
{
|
|
(void)newWindowName;
|
|
}
|
|
|
|
void NoRenderer::drawScreen() { }
|
|
|
|
void NoRenderer::putPixel(unsigned y, unsigned x, uint32_t rgba)
|
|
{
|
|
(void)x;
|
|
(void)y;
|
|
(void)rgba;
|
|
}
|
|
|
|
void NoRenderer::getEvents() { }
|
|
|
|
NoRenderer::NoRenderer(unsigned int height, unsigned int width, int maxFPS)
|
|
{
|
|
(void)height;
|
|
(void)width;
|
|
(void)maxFPS;
|
|
}
|
|
} |