- tweak: refactor funny
This commit is contained in:
7
Nebula.Shared/FileApis/Interfaces/IReadWriteFileApi.cs
Normal file
7
Nebula.Shared/FileApis/Interfaces/IReadWriteFileApi.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
using Robust.LoaderApi;
|
||||
|
||||
namespace Nebula.Shared.FileApis.Interfaces;
|
||||
|
||||
public interface IReadWriteFileApi : IFileApi, IWriteFileApi
|
||||
{
|
||||
}
|
||||
8
Nebula.Shared/FileApis/Interfaces/IWriteFileApi.cs
Normal file
8
Nebula.Shared/FileApis/Interfaces/IWriteFileApi.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Nebula.Shared.FileApis.Interfaces;
|
||||
|
||||
public interface IWriteFileApi
|
||||
{
|
||||
public bool Save(string path, Stream input);
|
||||
public bool Remove(string path);
|
||||
public bool Has(string path);
|
||||
}
|
||||
Reference in New Issue
Block a user