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

12 lines
304 B
C#
Raw Normal View History

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);
}
}