Пример #1
0
    public static int ShowCustomerCenter(IntPtr L)
    {
        int       count = LuaDLL.lua_gettop(L);
        const int nRet  = 0;

        if (count == 0)
        {
            PlatformControl.ShowCustomerCenter();
        }
        else if (count == 1 && LuaScriptMgr.CheckTypes(L, 1, typeof(LuaFunction)))
        {
            var callback = LuaScriptMgr.GetLuaFunction(L, 1);
            PlatformControl.ShowCustomerCenter(callback);
        }
        else
        {
            LogParamError("ShowCustomerCenter", count);
        }
        return(GameUtilWrap.CheckReturnNum(L, count, nRet));
    }