モジュール:IsMobile

提供:ファンタジー能力Wiki 移転先
2025年7月11日 (金) 12:38時点におけるKaranemi666 (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:IsMobile/doc に作成できます

local p = {}
function p.isMobile(frame)
    if not frame or not frame.getSkin then
        return "frameがないよ"
    end

    if not  frame.getSkin then
        return "getSkin がないよ"
    end

    local skin = frame:getSkin()
    if skin == "minerva" then
        return "1"
    else
        return ""
    end
end
return p