Conways-Game-Of-Life/ConwaysGameOfLife/TestRender.h
2018-03-20 18:17:17 +01:00

27 lines
357 B
C++

/**
* TestRender.h
* A class used by me to test rendering/update functionality of Framework.h
*
* @author Robert Altner
* @version 1.0
*/
#pragma once
#include "stdafx.h"
class TestRender
{
public:
TestRender();
bool render(sf::RenderWindow& window);
bool update();
private:
sf::CircleShape circle;
sf::Vector2f startPos;
float counter;
};