Banuba SDK
Loading...
Searching...
No Matches
camera_poi_listener.hpp
Go to the documentation of this file.
1/// \file
2/// \addtogroup EffectPlayer
3/// @{
4///
5// AUTOGENERATED FILE - DO NOT MODIFY!
6// This file was generated by Djinni from effect_player.djinni
7
8#pragma once
9
10#include <bnb/utils/defs.hpp>
11
12namespace bnb { namespace interfaces {
13
14/** Callback to get center of square bounding the face. */
15class BNB_EXPORT camera_poi_listener {
16public:
17 virtual ~camera_poi_listener() {}
18
19 /** @see EffectPlayer.setCameraPoiListener */
20 virtual void on_camera_poi_changed(float x, float y) = 0;
21};
22
23} } // namespace bnb::interfaces
24/// @}
25
Callback to get center of square bounding the face.
virtual void on_camera_poi_changed(float x, float y)=0