ProjectDDD/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/IFileIO.cs

12 lines
304 B (Stored with Git LFS)
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);
}
}