netatmo-algo/src/bounding_box.h

11 lines
136 B
C
Raw Normal View History

2022-02-12 00:28:54 +01:00
#pragma once
#include <cstdint>
struct BoundingBox {
uint32_t left;
uint32_t top;
uint32_t right;
uint32_t bottom;
};