#ifndef __POINTNODE_H__ #define __POINTNODE_H__ #include namespace gd { class GDH_DLL PointNode : public cocos2d::CCObject { public: cocos2d::CCPoint m_obPoint; static PointNode* create(cocos2d::CCPoint point) { return reinterpret_cast(base + 0x14ec80)(point); } }; } #endif