mirror of https://github.com/axmolengine/axmol.git
15 lines
261 B
C
15 lines
261 B
C
|
#ifndef __CUSTOMTABELVIEWCELL_H__
|
||
|
#define __CUSTOMTABELVIEWCELL_H__
|
||
|
|
||
|
#include "cocos2d.h"
|
||
|
#include "cocos-ext.h"
|
||
|
|
||
|
class CustomTableViewCell : public cocos2d::extension::CCTableViewCell
|
||
|
{
|
||
|
public:
|
||
|
virtual void draw();
|
||
|
};
|
||
|
|
||
|
#endif /* __CUSTOMTABELVIEWCELL_H__ */
|
||
|
|