mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
12 lines
448 B
C#
12 lines
448 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Registries;
|
|
|
|
namespace GFramework.Game.Abstractions.Scene;
|
|
|
|
/// <summary>
|
|
/// 游戏场景注册表接口,用于管理游戏场景的注册和查找
|
|
/// </summary>
|
|
/// <typeparam name="T">场景类型,表示注册表中存储的具体场景对象类型</typeparam>
|
|
public interface IGameSceneRegistry<T> : IRegistry<string, T>; |