23 lines
756 B
C#
23 lines
756 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
using GameFramework.FileSystem;
|
|
|
|
namespace UnityGameFramework.Editor.ResourceTools
|
|
{
|
|
public sealed partial class ResourceBuilderController
|
|
{
|
|
private sealed class FileSystemHelper : IFileSystemHelper
|
|
{
|
|
public FileSystemStream CreateFileSystemStream(string fullPath, FileSystemAccess access, bool createNew)
|
|
{
|
|
return new CommonFileSystemStream(fullPath, access, createNew);
|
|
}
|
|
}
|
|
}
|
|
}
|