Index

zydeco / 3c60e1a

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
405 Aug 2023 20:500dd781aCreate event handling and threads structureJosh Stockin141G

Blob @ zydeco / include / 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