mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
16 lines
348 B
C#
16 lines
348 B
C#
namespace AssetRipper.IO.Files;
|
|
|
|
public partial class LocalFileSystem : FileSystem
|
|
{
|
|
public static LocalFileSystem Instance { get; } = new();
|
|
|
|
public partial class LocalFileImplementation
|
|
{
|
|
}
|
|
|
|
public partial class LocalDirectoryImplementation
|
|
{
|
|
public override void Create(string path) => System.IO.Directory.CreateDirectory(path);
|
|
}
|
|
}
|