mirror of https://github.com/axmolengine/axmol.git
42 lines
702 B
C++
42 lines
702 B
C++
#ifndef __CCB_SEQUENCE_PROPERTY_H__
|
|
#define __CCB_SEQUENCE_PROPERTY_H__
|
|
|
|
#include "CCRef.h"
|
|
#include "CCVector.h"
|
|
#include "CCBKeyframe.h"
|
|
|
|
namespace cocosbuilder {
|
|
|
|
class CCBSequenceProperty : public cocos2d::Ref
|
|
{
|
|
public:
|
|
/**
|
|
* @js ctor
|
|
*/
|
|
CCBSequenceProperty();
|
|
/**
|
|
* @js NA
|
|
* @lua NA
|
|
*/
|
|
~CCBSequenceProperty();
|
|
|
|
virtual bool init();
|
|
|
|
const char* getName();
|
|
void setName(const char* pName);
|
|
|
|
int getType();
|
|
void setType(int type);
|
|
|
|
cocos2d::Vector<CCBKeyframe*>& getKeyframes();
|
|
|
|
private:
|
|
std::string _name;
|
|
int _type;
|
|
cocos2d::Vector<CCBKeyframe*> _keyframes;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __CCB_SEQUENCE_PROPERTY_H__
|