mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
16 lines
221 B
C++
16 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
|