This commit is contained in:
2019-11-05 19:01:33 -07:00
parent dea67dc3c0
commit ae02863a60
12 changed files with 99 additions and 0 deletions

View File

@@ -5,4 +5,12 @@
#ifndef HW6_RENDER_HPP
#define HW6_RENDER_HPP
#include "LifeSimulator.hpp"
class Renderer
{
public:
virtual void render(const LifeSimulator& simulation) = 0;
};
#endif //HW6_RENDER_HPP