blob: 9ca9136b73ad5eda5d72157db740eab73b6462b4 [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
};
}
#endif