Files
rive-cpp/include/rive/process_event_result.hpp
bodymovin 691a4a50b4 Nnnn scrolling override poc part 2
Diffs=
cd310b1b68 Nnnn scrolling override poc part 2 (#8679)

Co-authored-by: hernan <hernan@rive.app>
2024-12-05 00:08:04 +00:00

14 lines
205 B
C++

#ifndef _RIVE_PROCESS_EVENT_RESULT_HPP_
#define _RIVE_PROCESS_EVENT_RESULT_HPP_
namespace rive
{
enum class ProcessEventResult : uint8_t
{
none,
pointer,
scroll,
};
} // namespace rive
#endif