12345678910111213141516171819202122 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- 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);
- }
- }
- }
- }
|