Banuba SDK
Loading...
Searching...
No Matches
effect_info_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
14struct effect_info;
15
16/** Callback interface to receive effect info changes. */
17class BNB_EXPORT effect_info_listener {
18public:
19 virtual ~effect_info_listener() {}
20
21 /** Current effect information. */
22 virtual void on_effect_info_updated(const effect_info & info) = 0;
23};
24
25} } // namespace bnb::interfaces
26/// @}
27
Callback interface to receive effect info changes.
virtual void on_effect_info_updated(const effect_info &info)=0
Current effect information.