AppEasy Core SDK
1.5.0
Cross platform mobile and desktop app and game development SDK - The easy way to make apps
|
00001 // 00002 // 00003 // AppEasy SDK - Cross Platform Multi-purpose Game and App Engine 00004 // 00005 // Developed by Matthew Hopwood of Pocketeers Limited - www.pocketeers.co.uk 00006 // 00007 // For updates, tutorials and more details check out www.appeasymobile.com 00008 // 00009 // This code is provided free of charge and without any warranty whatsoever. You must ensure that this whole notice is present in all files and derivatives, so the reader knows its origin. 00010 // If you use this SDK in your product then please ensure that you credit AppEasy's usage appropriately. Please see www.appeasymobile.com for licensing details and support 00011 // 00012 // 00013 00014 #ifndef __CV_RECT_H__ 00015 #define __CV_RECT_H__ 00016 00017 class CzRect 00018 { 00019 public: 00020 float x, y, w, h; 00021 00022 private: 00023 public: 00024 CzRect(); 00025 CzRect(float x, float y, float w, float h); 00026 00027 }; 00028 00029 class CzIRect 00030 { 00031 public: 00032 int x, y, w, h; 00033 00034 private: 00035 public: 00036 CzIRect(); 00037 CzIRect(int x, int y, int w, int h); 00038 00039 }; 00040 00041 00042 #endif // __CV_RECT_H__ 00043