blob: 7f691a3142d7a79a0ca00a3b09396312b9ba1d82 [file] [log] [blame]
#ifndef _RIVE_KEYED_CALLBACK_REPORTER_HPP_
#define _RIVE_KEYED_CALLBACK_REPORTER_HPP_
namespace rive
{
class KeyedCallbackReporter
{
public:
virtual ~KeyedCallbackReporter() {}
virtual void reportKeyedCallback(uint32_t objectId,
uint32_t propertyKey,
float elapsedSeconds) = 0;
};
} // namespace rive
#endif