ProjectDDD/Packages/com.singularitygroup.hotreload/Editor/ProjectGeneration/IFileIO.cs
2025-07-08 19:46:31 +09: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);
}
}