Files
rive-cpp/include/rive/hit_info.hpp
csmartdalton 9c3168ef9d clang-format updates
- Put braces on their own line
- Turn off single-line case labels

Diffs=
32e79999a clang-format updates
2022-10-03 20:23:45 +00:00

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