mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-19 11:31:16 +00:00
12 lines
150 B
C++
12 lines
150 B
C++
#ifndef __TIMED_H__
|
|
#define __TIMED_H__
|
|
|
|
class Timed {
|
|
public:
|
|
virtual bool tick() = 0;
|
|
};
|
|
|
|
void timer_create(unsigned freq, Timed *client);
|
|
|
|
#endif
|