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