axmol/tools/tolua++/CCTMXObjectGroup.pkg

20 lines
473 B
Plaintext
Raw Normal View History

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
2012-02-02 14:26:38 +08:00
CCString *propertyNamed(const char* propertyName);
2011-06-14 14:31:25 +08:00
2012-04-26 14:32:17 +08:00
CCDictionary* objectNamed(const char *objectName);
2012-02-02 14:26:38 +08:00
};