14 lines
211 B
C++
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__
|