axmol/tests/cpp-tests/Classes/ExtensionsTest/TableViewTest/CustomTableViewCell.h

17 lines
373 B
C
Raw Normal View History

#ifndef __CUSTOMTABELVIEWCELL_H__
#define __CUSTOMTABELVIEWCELL_H__
#include "cocos2d.h"
#include "extensions/cocos-ext.h"
2014-04-08 22:07:35 +08:00
USING_NS_CC_MATH;
class CustomTableViewCell : public cocos2d::extension::TableViewCell
{
public:
2014-04-08 22:07:35 +08:00
virtual void draw(cocos2d::Renderer *renderer, const Matrix &transform, bool transformUpdated) override;
};
#endif /* __CUSTOMTABELVIEWCELL_H__ */