2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
class CCTMXObjectGroup : public CCObject
|
|
|
|
{
|
|
|
|
void setPositionOffset(CCPoint pt);
|
|
|
|
CCPoint getPositionOffset();
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-04-26 14:32:17 +08:00
|
|
|
void setProperties(CCDictionary* pval);
|
|
|
|
CCDictionary* getProperties();
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-04-26 14:32:17 +08:00
|
|
|
void setObjects(CCArray* val);
|
|
|
|
CCArray* getObjects();
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
void setGroupName(const char *groupName);
|
|
|
|
const char* getGroupName();
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2013-07-25 19:58:59 +08:00
|
|
|
CCString* getProperty(const char* propertyName);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2013-07-25 19:58:59 +08:00
|
|
|
CCDictionary* getObject(const char *objectName);
|
2012-02-02 14:26:38 +08:00
|
|
|
};
|