Files
CortexCore 13ffc9fd64 1
2024-06-03 10:11:43 +08:00

19 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
using UnityEditor;
namespace BITKit
{
public class ReadFile : MonoBehaviour
{
public string path;
public Provider output;
public void Excute()
{
output.Set(File.ReadAllText(path));
}
}
}