11 lines
199 B
C
11 lines
199 B
C
|
#ifndef DEF_XORCHESTRABLE_H
|
||
|
#define DEF_XORCHESTRABLE_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
// abstract class for orchestrables
|
||
|
struct xOrchestrable {
|
||
|
virtual void tick(const uint32_t ticks) = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|