]> git.vomp.tv Git - vompclient.git/blob - region.h
44f172df12fa411a5c99e2fe0faf3e3738aa5dfe
[vompclient.git] / region.h
1 #ifndef REGION_H
2 #define REGION_H
3
4 #include <stdio.h>
5 #include "defines.h"
6
7 class Region
8 {
9   public:
10     Region();
11     bool overlappedBy(Region& doesthisOverlap);
12 //    Region subtract(Region& other);
13     Region operator + (Region& other);
14     UINT x2();
15     UINT y2();
16
17     UINT x;
18     UINT y;
19     UINT w;
20     UINT h;
21     int z;
22 };
23
24 #endif