Banuba SDK
point2d.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 point2d final {
15  float x;
16  float y;
17 
18  point2d(float x_,
19  float y_)
20  : x(std::move(x_))
21  , y(std::move(y_))
22  {}
23 };
24 
25 } } // namespace bnb::interfaces
26 /// @}
27 
bnb::interfaces::point2d
Definition: point2d.hpp:14