blob: efbd03a5ad8248548d903f13036ec560e6ddd82a [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