You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
389 B
12 lines
389 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
/// <summary> |
|
/// 战术模型对象选中后的缓存类 |
|
/// </summary> |
|
public class SelectedObjs |
|
{ |
|
public static List<GameObject> gameObjs = new List<GameObject>();//把可单选的对象保存在gameObjs数组里 |
|
public static GameObject selectedObj = null;//记录单选选中的游戏对象 |
|
}
|
|
|