Files
Learning-UnityNGO/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/IFileIO.cs
T
2026-06-17 20:44:53 +03:00

12 lines
304 B
C#

namespace SingularityGroup.HotReload.Editor.ProjectGeneration
{
internal interface IFileIO
{
bool Exists(string fileName);
string ReadAllText(string fileName);
void WriteAllText(string path, string content);
string EscapedRelativePathFor(string file, string projectDirectory);
}
}