mirror of https://github.com/axmolengine/axmol.git
15 lines
354 B
C++
15 lines
354 B
C++
#ifndef __CUSTOMTABELVIEWCELL_H__
|
|
#define __CUSTOMTABELVIEWCELL_H__
|
|
|
|
#include "cocos2d.h"
|
|
#include "extensions/cocos-ext.h"
|
|
|
|
class CustomTableViewCell : public cocos2d::extension::TableViewCell
|
|
{
|
|
public:
|
|
virtual void draw(cocos2d::Renderer *renderer, const kmMat4 &transform, bool transformUpdated) override;
|
|
};
|
|
|
|
#endif /* __CUSTOMTABELVIEWCELL_H__ */
|
|
|