mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-24 21:23:58 +01:00
2 lines
117 B
C
2 lines
117 B
C
|
#pragma once
|
||
|
#define IS_IN_AREA(pos, min, max) (pos.x >= min.x && pos.x < max.x && pos.y >= min.y && pos.y < max.y)
|