mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
11 lines
310 B
C#
11 lines
310 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Storage;
|
|
|
|
namespace GFramework.Game.Abstractions.Storage;
|
|
|
|
/// <summary>
|
|
/// 表示作用域存储接口,继承自基础存储接口
|
|
/// </summary>
|
|
public interface IScopedStorage : IStorage; |