Files

15 lines
354 B
C
Raw Permalink Normal View History

2026-03-03 13:56:44 +08:00
#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 cocos2d::Mat4 &transform, uint32_t flags) override;
};
#endif /* __CUSTOMTABELVIEWCELL_H__ */