源代码详情

返回代码列表
C++

外部程序

作者: 超级管理员 发布时间: 2025-11-05 01:02 下载次数: 64 最后更新: 2026-01-03 10:28
外部程序
using System.Diagnostics;
using UnityEngine;
public class OpenExeButton : MonoBehaviour
{
    public string exePath;
    public void OpenExe()
    {
        Process.Start(exePath);
    }
}