2022-10-16 16:18:17 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.IO;
|
2022-11-08 23:43:35 +01:00
|
|
|
using Lavender.Systems;
|
2022-10-16 16:18:17 +02:00
|
|
|
|
|
|
|
public class StartBatchManager : MonoBehaviour
|
|
|
|
{
|
|
|
|
private void Start()
|
|
|
|
{
|
|
|
|
ConfigManager.EnsureInitialization();
|
2022-11-08 23:43:35 +01:00
|
|
|
if (ConfigManager.config.batFileLocation != "")
|
|
|
|
StartExternalProcess.Start(ConfigManager.config.batFileLocation);
|
|
|
|
//Process.Start(Path.GetFullPath(ConfigManager.config.batFileLocation));
|
2022-10-16 16:18:17 +02:00
|
|
|
}
|
|
|
|
}
|