Index
zydeco
/
1467546
Experiment in graphics programming, C++, OpenGL, simulation techniques.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
7
03 Sep 2023 16:01
5f524c5
OpenGL render abstractions
Josh Stockin
1
1
1
G
Blob @
zydeco
/
include
/
runtime
/
IUpdateable.hpp
text/plain
167 bytes
download raw
1
#ifndef IUPDATEABLE_HPP_
2
#define IUPDATEABLE_HPP_
3
4
5
#include <cstdint>
6
7
8
class
IUpdateable
9
{
10
public
:
11
virtual
bool
Update
() =
0
;
12
};
13
14
15
#endif
/* IUPDATEABLE_HPP_ */
16