24 lines
455 B
C#
24 lines
455 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using UnityEngine;
|
|
|
|
public class ceshi : MonoBehaviour
|
|
{
|
|
private Process currentIDE;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
if (currentIDE == null || currentIDE.HasExited)
|
|
{
|
|
UnityEngine.Debug.Log(111);
|
|
}
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|