mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 18:42:28 +00:00
15 lines
221 B
C++
15 lines
221 B
C++
#ifndef TEMPEST_RECT_C_IRECT_HPP
|
|
#define TEMPEST_RECT_C_IRECT_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
class CiRect {
|
|
public:
|
|
// Member variables
|
|
int32_t minY;
|
|
int32_t minX;
|
|
int32_t maxY;
|
|
int32_t maxX;
|
|
};
|
|
|
|
#endif
|