typhoon/tempest/rect/CiRect.hpp

16 lines
221 B
C++
Raw Normal View History

2022-12-24 16:45:36 -06:00
#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