netatmo-algo/src/bounding_box.h
2022-02-12 00:28:54 +01:00

10 lines
136 B
C++

#pragma once
#include <cstdint>
struct BoundingBox {
uint32_t left;
uint32_t top;
uint32_t right;
uint32_t bottom;
};