display/CCBatchNode

来源:互联网 发布:windows phone 刷机包 编辑:程序博客网 时间:2024/04/28 20:35

#ifndef __CCBATCHNODE_H__

#define __CCBATCHNODE_H__


#include "../utils/CCArmatureDefine.h"


NS_CC_EXT_BEGIN


class CCBatchNode : public CCNode

{

public:

    static CCBatchNode *create();

public:

    CCBatchNode();


    virtual bool init();

    virtual void addChild(CCNode *child, int zOrder, int tag);

    virtual void visit();

    void draw();


protected:

    CCTextureAtlas *m_pAtlas;

};


NS_CC_EXT_END


#endif /*__CCBATCHNODE_H__*/


0 0