axmol/cocos/2d/CCNewDrawNode.h

34 lines
423 B
C
Raw Normal View History

2013-11-16 03:29:11 +08:00
//
// Created by NiTe Luo on 11/14/13.
//
#ifndef __CCNewDrawNode_H_
#define __CCNewDrawNode_H_
#include "CCPlatformMacros.h"
#include "CCDrawNode.h"
NS_CC_BEGIN
class NewDrawNode : public DrawNode
{
public:
static NewDrawNode* create();
virtual ~NewDrawNode();
virtual bool init();
2013-11-20 03:06:26 +08:00
void updateTransform();
2013-11-16 03:29:11 +08:00
void draw();
protected:
NewDrawNode();
};
NS_CC_END
#endif //__CCNewDrawNode_H_