mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
12 lines
382 B
C#
12 lines
382 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
||
// SPDX-License-Identifier: Apache-2.0
|
||
|
||
using GFramework.Core.Abstractions.Storage;
|
||
|
||
namespace GFramework.Game.Abstractions.Storage;
|
||
|
||
/// <summary>
|
||
/// 文件存储接口,定义了文件存储操作的契约
|
||
/// 继承自IStorage接口,提供专门针对文件的存储功能
|
||
/// </summary>
|
||
public interface IFileStorage : IStorage; |