mirror of https://github.com/axmolengine/axmol.git
Merge pull request #1847 from dumganhar/gles20
fixed #1468: Exported CCPoint, CCSize and CCRect.
This commit is contained in:
commit
eb2fcf1efd
|
@ -35,7 +35,7 @@ NS_CC_BEGIN
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct CCPoint
|
class CC_DLL CCPoint
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
float x;
|
float x;
|
||||||
|
@ -50,7 +50,7 @@ public:
|
||||||
bool equals(const CCPoint& target) const;
|
bool equals(const CCPoint& target) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CCSize
|
class CC_DLL CCSize
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
float width;
|
float width;
|
||||||
|
@ -65,7 +65,7 @@ public:
|
||||||
bool equals(const CCSize& target) const;
|
bool equals(const CCSize& target) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CCRect
|
class CC_DLL CCRect
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CCPoint origin;
|
CCPoint origin;
|
||||||
|
|
Loading…
Reference in New Issue