Index

zydeco / 3195a10

Experiment in graphics programming, C++, OpenGL, simulation techniques.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
631 Aug 2023 21:183195a10Update program flowJosh Stockin1220G

Blob @ zydeco / include / render / Renderer.hpp

text/plain325 bytesdownload raw
1#ifndef RENDERER_HPP_
2#define RENDERER_HPP_
3
4
5#include "IUpdateable.hpp"
6
7
8class IWindow;
9
10
11class Renderer : public IUpdateable
12{
13public:
14 Renderer(IWindow& r_window);
15 ~Renderer() = default;
16 bool Update(uint64_t time_since_last_update_us) override;
17
18private:
19 IWindow& m_rWindow;
20};
21
22#endif /* RENDERER_HPP_ */
23