1 Star 0 Fork 1

凌寒君子/UnityGameFramework

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FileSystemHelperBase.cs 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Jiang Yin 提交于 2020-12-17 22:59 +08:00 . 更新版权信息
//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
using GameFramework.FileSystem;
using UnityEngine;
namespace UnityGameFramework.Runtime
{
/// <summary>
/// 文件系统辅助器基类。
/// </summary>
public abstract class FileSystemHelperBase : MonoBehaviour, IFileSystemHelper
{
/// <summary>
/// 创建文件系统流。
/// </summary>
/// <param name="fullPath">要加载的文件系统的完整路径。</param>
/// <param name="access">要加载的文件系统的访问方式。</param>
/// <param name="createNew">是否创建新的文件系统流。</param>
/// <returns>创建的文件系统流。</returns>
public abstract FileSystemStream CreateFileSystemStream(string fullPath, FileSystemAccess access, bool createNew);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/linghanjunzi/UnityGameFramework.git
git@gitee.com:linghanjunzi/UnityGameFramework.git
linghanjunzi
UnityGameFramework
UnityGameFramework
master

搜索帮助