From 785c612610a4353e4c67175dce38e0e22343b4a7 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sat, 24 Dec 2022 16:45:36 -0600 Subject: [PATCH] feat(rect): add CiRect --- tempest/Rect.hpp | 1 + tempest/rect/CiRect.hpp | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 tempest/rect/CiRect.hpp diff --git a/tempest/Rect.hpp b/tempest/Rect.hpp index abe3566..794e050 100644 --- a/tempest/Rect.hpp +++ b/tempest/Rect.hpp @@ -2,5 +2,6 @@ #define TEMPEST_RECT_HPP #include "tempest/rect/CRect.hpp" +#include "tempest/rect/CiRect.hpp" #endif diff --git a/tempest/rect/CiRect.hpp b/tempest/rect/CiRect.hpp new file mode 100644 index 0000000..8e44cd9 --- /dev/null +++ b/tempest/rect/CiRect.hpp @@ -0,0 +1,15 @@ +#ifndef TEMPEST_RECT_C_IRECT_HPP +#define TEMPEST_RECT_C_IRECT_HPP + +#include + +class CiRect { + public: + // Member variables + int32_t minY; + int32_t minX; + int32_t maxY; + int32_t maxX; +}; + +#endif