Index

zydeco / f2ac8af

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
304 Aug 2023 22:32f2ac8afCreate base Engine classJosh Stockin1120G

Blob @ zydeco / include / IUpdateable.hpp

text/plain186 bytesdownload raw
1#ifndef IUPDATEABLE_HPP_
2#define IUPDATEABLE_HPP_
3
4#include <cstdint>
5
6class IUpdateable
7{
8public:
9 bool Update(uint64_t time_since_last_update_us);
10};
11
12#endif /* IUPDATEABLE_HPP_ */
13