#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