Files
cs3460-cpp/Hw6/Renderer.hpp
2019-11-05 23:02:16 -07:00

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