Files
aibis-dream/Assets/Scripts/MiniGame/BlockPuzzle/BlockPuzzleSystem.cs
T
2025-11-20 18:07:15 +08:00

17 lines
384 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AibisDream
{
/// <summary>
/// BlockPuzzle游戏系统
/// 整合所有子系统的核心控制器
/// </summary>
public class BlockPuzzleSystem : MonoBehaviour
{
// 接口引用将在实现类中注入
// 这里先定义基础框架接口结构
}
}