2012-09-09 22:34:32 +08:00
|
|
|
#ifndef __CUSTOMTABELVIEWCELL_H__
|
|
|
|
#define __CUSTOMTABELVIEWCELL_H__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "extensions/cocos-ext.h"
|
2012-09-09 22:34:32 +08:00
|
|
|
|
2014-04-08 22:07:35 +08:00
|
|
|
USING_NS_CC_MATH;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class CustomTableViewCell : public cocos2d::extension::TableViewCell
|
2012-09-09 22:34:32 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-04-08 22:07:35 +08:00
|
|
|
virtual void draw(cocos2d::Renderer *renderer, const Matrix &transform, bool transformUpdated) override;
|
2012-09-09 22:34:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __CUSTOMTABELVIEWCELL_H__ */
|
|
|
|
|