summaryrefslogtreecommitdiff
path: root/marching/Assets/Scripts/Battle/SceneManager.cs
blob: 9ed2fc9c247cb5c669df6e48823d50c2cbf9d7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SceneManager : Singleton<SceneManager>
{

    // 场景内所有对象用这个结构维护
    private GridMap m_GridMap;

}