Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / rive-cpp / include / rive / hit_info.hpp
1 /*
2  * Copyright 2022 Rive
3  */
4
5 #ifndef _RIVE_HITINFO_HPP_
6 #define _RIVE_HITINFO_HPP_
7
8 #include "rive/math/aabb.hpp"
9 #include <vector>
10
11 namespace rive {
12
13     class NestedArtboard;
14
15     struct HitInfo {
16         IAABB area;                          // input
17         std::vector<NestedArtboard*> mounts; // output
18     };
19
20 } // namespace rive
21 #endif