mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
Diffs= cd310b1b68 Nnnn scrolling override poc part 2 (#8679) Co-authored-by: hernan <hernan@rive.app>
14 lines
205 B
C++
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
|