15 lines
367 B
C#
15 lines
367 B
C#
using game;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class WashingGameCollection : MonoBehaviour
|
|
{
|
|
[Tooltip("游戏类型")]
|
|
public List<WashingGameBase> m_GameList = new List<WashingGameBase>();
|
|
|
|
#region 数据相关
|
|
public List<WashingGameBase> GameList { get { return m_GameList; } }
|
|
#endregion
|
|
}
|