void CCGrid3DAction::setVertex(cocos2d::ccGridSize pos, cocos2d::ccVertex3F vertex) { CCGrid3D *g = (CCGrid3D*)m_pTarget->getGrid(); g->setVertex(pos, vertex); }
void CCGrid3DAction::setVertex(const CCPoint& position, const ccVertex3F& vertex) { CCGrid3D *g = (CCGrid3D*)m_pTarget->getGrid(); g->setVertex(position, vertex); }
void CCGrid3DAction::setVertex(const ccGridSize& pos, const ccVertex3F& vertex) { CCGrid3D *g = (CCGrid3D*)m_pTarget->getGrid(); g->setVertex(pos, vertex); }