Index
zydeco
/
fractal
Experiment in graphics programming, C++, OpenGL, simulation techniques.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
4
05 Aug 2023 20:50
0dd781a
Create event handling and threads structure
Josh Stockin
1
12
0
G
Blob @
zydeco
/
include
/
events
/
IEventQuitSubscriber.hpp
text/plain
193 bytes
download raw
1
#ifndef IEVENT_QUIT_SUBSCRIBER_HPP_
2
#define IEVENT_QUIT_SUBSCRIBER_HPP_
3
4
5
class
IEventQuitSubscriber
6
{
7
public
:
8
virtual
void
OnQuitEvent
() =
0
;
9
};
10
11
12
#endif
/* IEVENT_QUIT_SUBSCRIBER_HPP_ */
13