Index

zydeco / 3195a10

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

Latest Commit

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

Blob @ zydeco / include / runtime / IUpdateable.hpp

text/plain201 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(uint64_t time_since_last_update_us) = 0;
12};
13
14
15#endif /* IUPDATEABLE_HPP_ */
16