コード例 #1
0
ファイル: th_lua_anims.cpp プロジェクト: AtlasRedux/CorsixTH
static int l_anim_get_crop(lua_State *L)
{
    THAnimation* pAnimation = luaT_testuserdata<THAnimation>(L);
    lua_pushinteger(L, pAnimation->getCropColumn());
    return 1;
}