10 lines
222 B
C#
10 lines
222 B
C#
|
namespace Packages.Rider.Editor.ProjectGeneration
|
||
|
{
|
||
|
internal interface IFileIO
|
||
|
{
|
||
|
bool Exists(string fileName);
|
||
|
|
||
|
string ReadAllText(string fileName);
|
||
|
void WriteAllText(string fileName, string content);
|
||
|
}
|
||
|
}
|