mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
- Put braces on their own line - Turn off single-line case labels Diffs= 32e79999a clang-format updates
24 lines
325 B
C++
24 lines
325 B
C++
/*
|
|
* 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
|