Files
project-reset/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/IFileIO.cs
2025-03-12 14:22:16 -04: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);
}
}