blob: cd2e9c6c472b276acd03e533e584174a71655252 [file] [log] [blame]
/*
* Copyright 2022 Rive
*/
#ifndef _RIVE_HITINFO_HPP_
#define _RIVE_HITINFO_HPP_
#include "rive/math/aabb.hpp"
#include <vector>
namespace rive {
class NestedArtboard;
struct HitInfo {
IAABB area; // input
std::vector<NestedArtboard*> mounts; // output
};
} // namespace rive
#endif