Banuba SDK
Loading...
Searching...
No Matches
pixel_rect.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 <cstdint>
11#include <utility>
12
13namespace bnb { namespace interfaces {
14
15struct pixel_rect final {
16 int32_t x;
17 int32_t y;
18 int32_t w;
19 int32_t h;
20
21 pixel_rect(int32_t x_,
22 int32_t y_,
23 int32_t w_,
24 int32_t h_)
25 : x(std::move(x_))
26 , y(std::move(y_))
27 , w(std::move(w_))
28 , h(std::move(h_))
29 {}
30};
31
32} } // namespace bnb::interfaces
33/// @}
34