PassengerStatistics/Main/Geometry.h
2024-03-14 21:41:54 +08:00

14 lines
211 B
C++

#ifndef __GEOMETRY_H__
#define __GEOMETRY_H__
#include <cstdint>
class Rectangle {
public:
int32_t left = 0;
int32_t right = 0;
int32_t top = 0;
int32_t bottom = 0;
};
#endif // __GEOMETRY_H__