コード例 #1
0
ファイル: wrap_PolygonShape.cpp プロジェクト: joedrago/love
int w_PolygonShape_getPoints(lua_State *L)
{
	PolygonShape *t = luax_checkpolygonshape(L, 1);
	lua_remove(L, 1);
	return t->getPoints(L);
}