Merge pull request #1847 from dumganhar/gles20

fixed #1468: Exported CCPoint, CCSize and CCRect.
This commit is contained in:
James Chen 2013-01-15 03:10:50 -08:00
commit eb2fcf1efd
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ NS_CC_BEGIN
* @{
*/
struct CCPoint
class CC_DLL CCPoint
{
public:
float x;
@ -50,7 +50,7 @@ public:
bool equals(const CCPoint& target) const;
};
struct CCSize
class CC_DLL CCSize
{
public:
float width;
@ -65,7 +65,7 @@ public:
bool equals(const CCSize& target) const;
};
struct CCRect
class CC_DLL CCRect
{
public:
CCPoint origin;