diff options
Diffstat (limited to 'plugingui/guievent.h')
-rw-r--r-- | plugingui/guievent.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugingui/guievent.h b/plugingui/guievent.h index 2d4cc6f..11a7b9b 100644 --- a/plugingui/guievent.h +++ b/plugingui/guievent.h @@ -174,5 +174,12 @@ public: using EventQueue = std::list<std::shared_ptr<Event>>; +struct Rect +{ + std::size_t x1; + std::size_t y1; + std::size_t x2; + std::size_t y2; +}; } // GUI:: |