1
0
mirror of synced 2024-12-14 15:22:54 +01:00
WACVR/Assets/Script/Configuration/StartBatchManager.cs

18 lines
497 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Diagnostics;
using System.IO;
using Lavender.Systems;
public class StartBatchManager : MonoBehaviour
{
private void Start()
{
ConfigManager.EnsureInitialization();
if (ConfigManager.config.batFileLocation != "")
StartExternalProcess.Start(ConfigManager.config.batFileLocation);
//Process.Start(Path.GetFullPath(ConfigManager.config.batFileLocation));
}
}