Index

zydeco / 77061a1

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
703 Sep 2023 16:015f524c5OpenGL render abstractionsJosh Stockin111G

Blob @ zydeco / include / runtime / IUpdateable.hpp

text/plain167 bytesdownload raw
1#ifndef IUPDATEABLE_HPP_
2#define IUPDATEABLE_HPP_
3
4
5#include <cstdint>
6
7
8class IUpdateable
9{
10public:
11 virtual bool Update() = 0;
12};
13
14
15#endif /* IUPDATEABLE_HPP_ */
16