Banuba SDK
libs
types
bnb
types
interfaces
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
12
namespace
bnb {
namespace
interfaces {
13
14
struct
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
bnb::interfaces::eyes_state
Definition:
eyes_state.hpp:14
Generated by
1.8.17