17 lines
240 B
C++
17 lines
240 B
C++
//
|
|
// Created by Brady Bodily on 11/5/19.
|
|
//
|
|
|
|
#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
|