Banuba SDK
Loading...
Searching...
No Matches
eyes_state.hpp
Go to the documentation of this file.
1/// \file
2/// \addtogroup Types
3/// @{
4///
5// AUTOGENERATED FILE - DO NOT MODIFY!
6// This file was generated by Djinni from types.djinni
7
8#pragma once
9
10#include <utility>
11
12namespace bnb { namespace interfaces {
13
14struct eyes_state final {
15 bool is_open_left;
16 bool is_open_right;
17
18 eyes_state(bool is_open_left_,
19 bool is_open_right_)
20 : is_open_left(std::move(is_open_left_))
21 , is_open_right(std::move(is_open_right_))
22 {}
23};
24
25} } // namespace bnb::interfaces
26/// @}
27