mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(rect): add CiRect
This commit is contained in:
parent
0623492fe6
commit
785c612610
2 changed files with 16 additions and 0 deletions
|
|
@ -2,5 +2,6 @@
|
|||
#define TEMPEST_RECT_HPP
|
||||
|
||||
#include "tempest/rect/CRect.hpp"
|
||||
#include "tempest/rect/CiRect.hpp"
|
||||
|
||||
#endif
|
||||
|
|
|
|||
15
tempest/rect/CiRect.hpp
Normal file
15
tempest/rect/CiRect.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue