feat(rect): add CiRect

This commit is contained in:
fallenoak 2022-12-24 16:45:36 -06:00
parent 0623492fe6
commit 785c612610
2 changed files with 16 additions and 0 deletions

15
tempest/rect/CiRect.hpp Normal file
View file

@ -0,0 +1,15 @@
#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